...
Source file src/runtime/stubs2.go
1
2
3
4
5
6
7
8
9
10
11
12
13 package runtime
14
15 import "unsafe"
16
17 func read(fd int32, p unsafe.Pointer, n int32) int32
18 func closefd(fd int32) int32
19
20 func exit(code int32)
21 func usleep(usec uint32)
22
23
24 func write(fd uintptr, p unsafe.Pointer, n int32) int32
25
26
27 func open(name *byte, mode, perm int32) int32
28
29
30 func madvise(addr unsafe.Pointer, n uintptr, flags int32) int32
31
32
33
34
35
36 func exitThread(wait *uint32)
37
View as plain text