blob: 9615a6e2e14efdab9f50351aa8808be4f089ba06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
use sys
use "errno.use"
use "cstrconv.use"
pkg std =
const exit : (status : int -> void)
pkglocal const bgetcwd : (buf : byte[:] -> errno)
;;
const bgetcwd = {buf
var fd
fd = sys.open(".", sys.Ordonly)
if fd < 0
-> fd castto(errno)
;;
if sys.fd2path(fd, buf) == 0
/*
Because we don't return the size, the best we can do is
assume that if the buffer is completely full, we have
truncated it. Since we truncate at utf8 characters, we
can have at most 3 bytes truncated (4 bytes will fit
any utf8 char), and one byte for the nul terminator.
*/
if cstrlen(buf) + 5 == buf.len
-> Erange
else
-> cstrlen(buf) castto(errno)
;;
;;
-> Emisc
}
const digitchars = "0123456789"
const exit = {status
var buf : byte[32] /* big enough for exit status numbers */
var n, i
if status == 0
sys.exits("")
else
status &= 255
i = 100
n = 0
while i > 0
if status >= i
buf[n++] = digitchars[(status/i)%10]
;;
i /= 10
;;
sys.exits(buf[:n])
;;
}
|