Russ Cox | 580ef3e | 2014-11-11 17:07:37 -0500 | [diff] [blame] | 1 | // created by cgo -cdefs and then converted to Go |
| 2 | // cgo -cdefs defs_netbsd.go defs_netbsd_386.go |
| 3 | |
| 4 | package runtime |
| 5 | |
| 6 | const ( |
| 7 | _EINTR = 0x4 |
| 8 | _EFAULT = 0xe |
| 9 | |
| 10 | _PROT_NONE = 0x0 |
| 11 | _PROT_READ = 0x1 |
| 12 | _PROT_WRITE = 0x2 |
| 13 | _PROT_EXEC = 0x4 |
| 14 | |
| 15 | _MAP_ANON = 0x1000 |
| 16 | _MAP_PRIVATE = 0x2 |
| 17 | _MAP_FIXED = 0x10 |
| 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_RECEIPT = 0 |
| 81 | _EV_ERROR = 0x4000 |
| 82 | _EVFILT_READ = 0x0 |
| 83 | _EVFILT_WRITE = 0x1 |
| 84 | ) |
| 85 | |
| 86 | type sigaltstackt struct { |
Joel Sing | 0d76887 | 2014-11-22 22:09:11 +1100 | [diff] [blame] | 87 | ss_sp uintptr |
| 88 | ss_size uintptr |
Russ Cox | 580ef3e | 2014-11-11 17:07:37 -0500 | [diff] [blame] | 89 | ss_flags int32 |
| 90 | } |
| 91 | |
| 92 | type sigset struct { |
| 93 | __bits [4]uint32 |
| 94 | } |
| 95 | |
| 96 | type siginfo struct { |
| 97 | _signo int32 |
| 98 | _code int32 |
| 99 | _errno int32 |
| 100 | _reason [20]byte |
| 101 | } |
| 102 | |
| 103 | type stackt struct { |
Joel Sing | 0d76887 | 2014-11-22 22:09:11 +1100 | [diff] [blame] | 104 | ss_sp uintptr |
| 105 | ss_size uintptr |
Russ Cox | 580ef3e | 2014-11-11 17:07:37 -0500 | [diff] [blame] | 106 | ss_flags int32 |
| 107 | } |
| 108 | |
| 109 | type timespec struct { |
| 110 | tv_sec int64 |
| 111 | tv_nsec int32 |
| 112 | } |
| 113 | |
Joel Sing | 0d76887 | 2014-11-22 22:09:11 +1100 | [diff] [blame] | 114 | func (ts *timespec) set_sec(x int32) { |
| 115 | ts.tv_sec = int64(x) |
| 116 | } |
| 117 | |
| 118 | func (ts *timespec) set_nsec(x int32) { |
| 119 | ts.tv_nsec = x |
| 120 | } |
| 121 | |
Russ Cox | 580ef3e | 2014-11-11 17:07:37 -0500 | [diff] [blame] | 122 | type timeval struct { |
| 123 | tv_sec int64 |
| 124 | tv_usec int32 |
| 125 | } |
| 126 | |
Joel Sing | 0d76887 | 2014-11-22 22:09:11 +1100 | [diff] [blame] | 127 | func (tv *timeval) set_usec(x int32) { |
| 128 | tv.tv_usec = x |
| 129 | } |
| 130 | |
Russ Cox | 580ef3e | 2014-11-11 17:07:37 -0500 | [diff] [blame] | 131 | type itimerval struct { |
| 132 | it_interval timeval |
| 133 | it_value timeval |
| 134 | } |
| 135 | |
| 136 | type mcontextt struct { |
Joel Sing | 0d76887 | 2014-11-22 22:09:11 +1100 | [diff] [blame] | 137 | __gregs [19]uint32 |
Russ Cox | 580ef3e | 2014-11-11 17:07:37 -0500 | [diff] [blame] | 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 | // created by cgo -cdefs and then converted to Go |
| 161 | // cgo -cdefs defs_netbsd.go defs_netbsd_386.go |
| 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 | ) |