...
Source file src/runtime/defs_openbsd_arm64.go
1 package runtime
2
3 import "unsafe"
4
5 const (
6 _EINTR = 0x4
7 _EFAULT = 0xe
8
9 _PROT_NONE = 0x0
10 _PROT_READ = 0x1
11 _PROT_WRITE = 0x2
12 _PROT_EXEC = 0x4
13
14 _MAP_ANON = 0x1000
15 _MAP_PRIVATE = 0x2
16 _MAP_FIXED = 0x10
17 _MAP_STACK = 0x4000
18
19 _MADV_FREE = 0x6
20
21 _SA_SIGINFO = 0x40
22 _SA_RESTART = 0x2
23 _SA_ONSTACK = 0x1
24
25 _SIGHUP = 0x1
26 _SIGINT = 0x2
27 _SIGQUIT = 0x3
28 _SIGILL = 0x4
29 _SIGTRAP = 0x5
30 _SIGABRT = 0x6
31 _SIGEMT = 0x7
32 _SIGFPE = 0x8
33 _SIGKILL = 0x9
34 _SIGBUS = 0xa
35 _SIGSEGV = 0xb
36 _SIGSYS = 0xc
37 _SIGPIPE = 0xd
38 _SIGALRM = 0xe
39 _SIGTERM = 0xf
40 _SIGURG = 0x10
41 _SIGSTOP = 0x11
42 _SIGTSTP = 0x12
43 _SIGCONT = 0x13
44 _SIGCHLD = 0x14
45 _SIGTTIN = 0x15
46 _SIGTTOU = 0x16
47 _SIGIO = 0x17
48 _SIGXCPU = 0x18
49 _SIGXFSZ = 0x19
50 _SIGVTALRM = 0x1a
51 _SIGPROF = 0x1b
52 _SIGWINCH = 0x1c
53 _SIGINFO = 0x1d
54 _SIGUSR1 = 0x1e
55 _SIGUSR2 = 0x1f
56
57 _FPE_INTDIV = 0x1
58 _FPE_INTOVF = 0x2
59 _FPE_FLTDIV = 0x3
60 _FPE_FLTOVF = 0x4
61 _FPE_FLTUND = 0x5
62 _FPE_FLTRES = 0x6
63 _FPE_FLTINV = 0x7
64 _FPE_FLTSUB = 0x8
65
66 _BUS_ADRALN = 0x1
67 _BUS_ADRERR = 0x2
68 _BUS_OBJERR = 0x3
69
70 _SEGV_MAPERR = 0x1
71 _SEGV_ACCERR = 0x2
72
73 _ITIMER_REAL = 0x0
74 _ITIMER_VIRTUAL = 0x1
75 _ITIMER_PROF = 0x2
76
77 _EV_ADD = 0x1
78 _EV_DELETE = 0x2
79 _EV_CLEAR = 0x20
80 _EV_ERROR = 0x4000
81 _EV_EOF = 0x8000
82 _EVFILT_READ = -0x1
83 _EVFILT_WRITE = -0x2
84 )
85
86 type tforkt struct {
87 tf_tcb unsafe.Pointer
88 tf_tid *int32
89 tf_stack uintptr
90 }
91
92 type sigcontext struct {
93 __sc_unused int32
94 sc_mask int32
95 sc_sp uintptr
96 sc_lr uintptr
97 sc_elr uintptr
98 sc_spsr uintptr
99 sc_x [30]uintptr
100 sc_cookie int64
101 }
102
103 type siginfo struct {
104 si_signo int32
105 si_code int32
106 si_errno int32
107 pad_cgo_0 [4]byte
108 _data [120]byte
109 }
110
111 type stackt struct {
112 ss_sp uintptr
113 ss_size uintptr
114 ss_flags int32
115 pad_cgo_0 [4]byte
116 }
117
118 type timespec struct {
119 tv_sec int64
120 tv_nsec int64
121 }
122
123
124 func (ts *timespec) setNsec(ns int64) {
125 ts.tv_sec = ns / 1e9
126 ts.tv_nsec = ns % 1e9
127 }
128
129 type timeval struct {
130 tv_sec int64
131 tv_usec int64
132 }
133
134 func (tv *timeval) set_usec(x int32) {
135 tv.tv_usec = int64(x)
136 }
137
138 type itimerval struct {
139 it_interval timeval
140 it_value timeval
141 }
142
143 type keventt struct {
144 ident uint64
145 filter int16
146 flags uint16
147 fflags uint32
148 data int64
149 udata *byte
150 }
151
View as plain text