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