...
Source file
src/runtime/defs_freebsd_amd64.go
Documentation: runtime
1
2
3
4
5 package runtime
6
7 import "unsafe"
8
9 const (
10 _NBBY = 0x8
11 _CTL_MAXNAME = 0x18
12 _CPU_LEVEL_WHICH = 0x3
13 _CPU_WHICH_PID = 0x2
14 )
15
16 const (
17 _EINTR = 0x4
18 _EFAULT = 0xe
19 _EAGAIN = 0x23
20 _ETIMEDOUT = 0x3c
21
22 _O_WRONLY = 0x1
23 _O_NONBLOCK = 0x4
24 _O_CREAT = 0x200
25 _O_TRUNC = 0x400
26 _O_CLOEXEC = 0x100000
27
28 _PROT_NONE = 0x0
29 _PROT_READ = 0x1
30 _PROT_WRITE = 0x2
31 _PROT_EXEC = 0x4
32
33 _MAP_ANON = 0x1000
34 _MAP_SHARED = 0x1
35 _MAP_PRIVATE = 0x2
36 _MAP_FIXED = 0x10
37
38 _MADV_DONTNEED = 0x4
39 _MADV_FREE = 0x5
40
41 _SA_SIGINFO = 0x40
42 _SA_RESTART = 0x2
43 _SA_ONSTACK = 0x1
44
45 _CLOCK_MONOTONIC = 0x4
46 _CLOCK_REALTIME = 0x0
47
48 _UMTX_OP_WAIT_UINT = 0xb
49 _UMTX_OP_WAIT_UINT_PRIVATE = 0xf
50 _UMTX_OP_WAKE = 0x3
51 _UMTX_OP_WAKE_PRIVATE = 0x10
52
53 _SIGHUP = 0x1
54 _SIGINT = 0x2
55 _SIGQUIT = 0x3
56 _SIGILL = 0x4
57 _SIGTRAP = 0x5
58 _SIGABRT = 0x6
59 _SIGEMT = 0x7
60 _SIGFPE = 0x8
61 _SIGKILL = 0x9
62 _SIGBUS = 0xa
63 _SIGSEGV = 0xb
64 _SIGSYS = 0xc
65 _SIGPIPE = 0xd
66 _SIGALRM = 0xe
67 _SIGTERM = 0xf
68 _SIGURG = 0x10
69 _SIGSTOP = 0x11
70 _SIGTSTP = 0x12
71 _SIGCONT = 0x13
72 _SIGCHLD = 0x14
73 _SIGTTIN = 0x15
74 _SIGTTOU = 0x16
75 _SIGIO = 0x17
76 _SIGXCPU = 0x18
77 _SIGXFSZ = 0x19
78 _SIGVTALRM = 0x1a
79 _SIGPROF = 0x1b
80 _SIGWINCH = 0x1c
81 _SIGINFO = 0x1d
82 _SIGUSR1 = 0x1e
83 _SIGUSR2 = 0x1f
84
85 _FPE_INTDIV = 0x2
86 _FPE_INTOVF = 0x1
87 _FPE_FLTDIV = 0x3
88 _FPE_FLTOVF = 0x4
89 _FPE_FLTUND = 0x5
90 _FPE_FLTRES = 0x6
91 _FPE_FLTINV = 0x7
92 _FPE_FLTSUB = 0x8
93
94 _BUS_ADRALN = 0x1
95 _BUS_ADRERR = 0x2
96 _BUS_OBJERR = 0x3
97
98 _SEGV_MAPERR = 0x1
99 _SEGV_ACCERR = 0x2
100
101 _ITIMER_REAL = 0x0
102 _ITIMER_VIRTUAL = 0x1
103 _ITIMER_PROF = 0x2
104
105 _EV_ADD = 0x1
106 _EV_DELETE = 0x2
107 _EV_CLEAR = 0x20
108 _EV_RECEIPT = 0x40
109 _EV_ERROR = 0x4000
110 _EV_EOF = 0x8000
111 _EVFILT_READ = -0x1
112 _EVFILT_WRITE = -0x2
113 )
114
115 type rtprio struct {
116 _type uint16
117 prio uint16
118 }
119
120 type thrparam struct {
121 start_func uintptr
122 arg unsafe.Pointer
123 stack_base uintptr
124 stack_size uintptr
125 tls_base unsafe.Pointer
126 tls_size uintptr
127 child_tid unsafe.Pointer
128 parent_tid *int64
129 flags int32
130 pad_cgo_0 [4]byte
131 rtp *rtprio
132 spare [3]uintptr
133 }
134
135 type thread int64
136
137 type sigset struct {
138 __bits [4]uint32
139 }
140
141 type stackt struct {
142 ss_sp uintptr
143 ss_size uintptr
144 ss_flags int32
145 pad_cgo_0 [4]byte
146 }
147
148 type siginfo struct {
149 si_signo int32
150 si_errno int32
151 si_code int32
152 si_pid int32
153 si_uid uint32
154 si_status int32
155 si_addr uint64
156 si_value [8]byte
157 _reason [40]byte
158 }
159
160 type mcontext struct {
161 mc_onstack uint64
162 mc_rdi uint64
163 mc_rsi uint64
164 mc_rdx uint64
165 mc_rcx uint64
166 mc_r8 uint64
167 mc_r9 uint64
168 mc_rax uint64
169 mc_rbx uint64
170 mc_rbp uint64
171 mc_r10 uint64
172 mc_r11 uint64
173 mc_r12 uint64
174 mc_r13 uint64
175 mc_r14 uint64
176 mc_r15 uint64
177 mc_trapno uint32
178 mc_fs uint16
179 mc_gs uint16
180 mc_addr uint64
181 mc_flags uint32
182 mc_es uint16
183 mc_ds uint16
184 mc_err uint64
185 mc_rip uint64
186 mc_cs uint64
187 mc_rflags uint64
188 mc_rsp uint64
189 mc_ss uint64
190 mc_len uint64
191 mc_fpformat uint64
192 mc_ownedfp uint64
193 mc_fpstate [64]uint64
194 mc_fsbase uint64
195 mc_gsbase uint64
196 mc_xfpustate uint64
197 mc_xfpustate_len uint64
198 mc_spare [4]uint64
199 }
200
201 type ucontext struct {
202 uc_sigmask sigset
203 uc_mcontext mcontext
204 uc_link *ucontext
205 uc_stack stackt
206 uc_flags int32
207 __spare__ [4]int32
208 pad_cgo_0 [12]byte
209 }
210
211 type timespec struct {
212 tv_sec int64
213 tv_nsec int64
214 }
215
216
217 func (ts *timespec) setNsec(ns int64) {
218 ts.tv_sec = ns / 1e9
219 ts.tv_nsec = ns % 1e9
220 }
221
222 type timeval struct {
223 tv_sec int64
224 tv_usec int64
225 }
226
227 func (tv *timeval) set_usec(x int32) {
228 tv.tv_usec = int64(x)
229 }
230
231 type itimerval struct {
232 it_interval timeval
233 it_value timeval
234 }
235
236 type umtx_time struct {
237 _timeout timespec
238 _flags uint32
239 _clockid uint32
240 }
241
242 type keventt struct {
243 ident uint64
244 filter int16
245 flags uint16
246 fflags uint32
247 data int64
248 udata *byte
249 ext [4]uint64
250 }
251
252 type bintime struct {
253 sec int64
254 frac uint64
255 }
256
257 type vdsoTimehands struct {
258 algo uint32
259 gen uint32
260 scale uint64
261 offset_count uint32
262 counter_mask uint32
263 offset bintime
264 boottime bintime
265 x86_shift uint32
266 x86_hpet_idx uint32
267 res [6]uint32
268 }
269
270 type vdsoTimekeep struct {
271 ver uint32
272 enabled uint32
273 current uint32
274 pad_cgo_0 [4]byte
275 }
276
277 const (
278 _VDSO_TK_VER_CURR = 0x1
279
280 vdsoTimehandsSize = 0x58
281 vdsoTimekeepSize = 0x10
282 )
283
View as plain text