...
Source file
src/runtime/defs1_netbsd_386.go
Documentation: runtime
1
2
3
4 package runtime
5
6 const (
7 _EINTR = 0x4
8 _EFAULT = 0xe
9 _EAGAIN = 0x23
10
11 _O_WRONLY = 0x1
12 _O_NONBLOCK = 0x4
13 _O_CREAT = 0x200
14 _O_TRUNC = 0x400
15 _O_CLOEXEC = 0x400000
16
17 _PROT_NONE = 0x0
18 _PROT_READ = 0x1
19 _PROT_WRITE = 0x2
20 _PROT_EXEC = 0x4
21
22 _MAP_ANON = 0x1000
23 _MAP_PRIVATE = 0x2
24 _MAP_FIXED = 0x10
25
26 _MADV_DONTNEED = 0x4
27 _MADV_FREE = 0x6
28
29 _SA_SIGINFO = 0x40
30 _SA_RESTART = 0x2
31 _SA_ONSTACK = 0x1
32
33 _SIGHUP = 0x1
34 _SIGINT = 0x2
35 _SIGQUIT = 0x3
36 _SIGILL = 0x4
37 _SIGTRAP = 0x5
38 _SIGABRT = 0x6
39 _SIGEMT = 0x7
40 _SIGFPE = 0x8
41 _SIGKILL = 0x9
42 _SIGBUS = 0xa
43 _SIGSEGV = 0xb
44 _SIGSYS = 0xc
45 _SIGPIPE = 0xd
46 _SIGALRM = 0xe
47 _SIGTERM = 0xf
48 _SIGURG = 0x10
49 _SIGSTOP = 0x11
50 _SIGTSTP = 0x12
51 _SIGCONT = 0x13
52 _SIGCHLD = 0x14
53 _SIGTTIN = 0x15
54 _SIGTTOU = 0x16
55 _SIGIO = 0x17
56 _SIGXCPU = 0x18
57 _SIGXFSZ = 0x19
58 _SIGVTALRM = 0x1a
59 _SIGPROF = 0x1b
60 _SIGWINCH = 0x1c
61 _SIGINFO = 0x1d
62 _SIGUSR1 = 0x1e
63 _SIGUSR2 = 0x1f
64
65 _FPE_INTDIV = 0x1
66 _FPE_INTOVF = 0x2
67 _FPE_FLTDIV = 0x3
68 _FPE_FLTOVF = 0x4
69 _FPE_FLTUND = 0x5
70 _FPE_FLTRES = 0x6
71 _FPE_FLTINV = 0x7
72 _FPE_FLTSUB = 0x8
73
74 _BUS_ADRALN = 0x1
75 _BUS_ADRERR = 0x2
76 _BUS_OBJERR = 0x3
77
78 _SEGV_MAPERR = 0x1
79 _SEGV_ACCERR = 0x2
80
81 _ITIMER_REAL = 0x0
82 _ITIMER_VIRTUAL = 0x1
83 _ITIMER_PROF = 0x2
84
85 _EV_ADD = 0x1
86 _EV_DELETE = 0x2
87 _EV_CLEAR = 0x20
88 _EV_RECEIPT = 0
89 _EV_ERROR = 0x4000
90 _EV_EOF = 0x8000
91 _EVFILT_READ = 0x0
92 _EVFILT_WRITE = 0x1
93 )
94
95 type sigset struct {
96 __bits [4]uint32
97 }
98
99 type siginfo struct {
100 _signo int32
101 _code int32
102 _errno int32
103 _reason [20]byte
104 }
105
106 type stackt struct {
107 ss_sp uintptr
108 ss_size uintptr
109 ss_flags int32
110 }
111
112 type timespec struct {
113 tv_sec int64
114 tv_nsec int32
115 }
116
117
118 func (ts *timespec) setNsec(ns int64) {
119 ts.tv_sec = int64(timediv(ns, 1e9, &ts.tv_nsec))
120 }
121
122 type timeval struct {
123 tv_sec int64
124 tv_usec int32
125 }
126
127 func (tv *timeval) set_usec(x int32) {
128 tv.tv_usec = x
129 }
130
131 type itimerval struct {
132 it_interval timeval
133 it_value timeval
134 }
135
136 type mcontextt struct {
137 __gregs [19]uint32
138 __fpregs [644]byte
139 _mc_tlsbase int32
140 }
141
142 type ucontextt struct {
143 uc_flags uint32
144 uc_link *ucontextt
145 uc_sigmask sigset
146 uc_stack stackt
147 uc_mcontext mcontextt
148 __uc_pad [4]int32
149 }
150
151 type keventt struct {
152 ident uint32
153 filter uint32
154 flags uint32
155 fflags uint32
156 data int64
157 udata *byte
158 }
159
160
161
162
163 const (
164 _REG_GS = 0x0
165 _REG_FS = 0x1
166 _REG_ES = 0x2
167 _REG_DS = 0x3
168 _REG_EDI = 0x4
169 _REG_ESI = 0x5
170 _REG_EBP = 0x6
171 _REG_ESP = 0x7
172 _REG_EBX = 0x8
173 _REG_EDX = 0x9
174 _REG_ECX = 0xa
175 _REG_EAX = 0xb
176 _REG_TRAPNO = 0xc
177 _REG_ERR = 0xd
178 _REG_EIP = 0xe
179 _REG_CS = 0xf
180 _REG_EFL = 0x10
181 _REG_UESP = 0x11
182 _REG_SS = 0x12
183 )
184
View as plain text