Source file
src/runtime/defs1_linux.go
1
2
3
4
5
6
7
12
13 package runtime
14
15
20 import "C"
21
22 const (
23 O_RDONLY = C.O_RDONLY
24 O_NONBLOCK = C.O_NONBLOCK
25 O_CLOEXEC = C.O_CLOEXEC
26 SA_RESTORER = C.SA_RESTORER
27 )
28
29 type Usigset C.__sigset_t
30 type Fpxreg C.struct__libc_fpxreg
31 type Xmmreg C.struct__libc_xmmreg
32 type Fpstate C.struct__libc_fpstate
33 type Fpxreg1 C.struct__fpxreg
34 type Xmmreg1 C.struct__xmmreg
35 type Fpstate1 C.struct__fpstate
36 type Fpreg1 C.struct__fpreg
37 type StackT C.stack_t
38 type Mcontext C.mcontext_t
39 type Ucontext C.ucontext_t
40 type Sigcontext C.struct_sigcontext
41
View as plain text