Home | History | Annotate | Download | only in runtime
      1 // created by cgo -cdefs and then converted to Go
      2 // cgo -cdefs defs_openbsd.go
      3 
      4 package runtime
      5 
      6 import "unsafe"
      7 
      8 const (
      9 	_EINTR  = 0x4
     10 	_EFAULT = 0xe
     11 
     12 	_PROT_NONE  = 0x0
     13 	_PROT_READ  = 0x1
     14 	_PROT_WRITE = 0x2
     15 	_PROT_EXEC  = 0x4
     16 
     17 	_MAP_ANON    = 0x1000
     18 	_MAP_PRIVATE = 0x2
     19 	_MAP_FIXED   = 0x10
     20 
     21 	_MADV_FREE = 0x6
     22 
     23 	_SA_SIGINFO = 0x40
     24 	_SA_RESTART = 0x2
     25 	_SA_ONSTACK = 0x1
     26 
     27 	_SIGHUP    = 0x1
     28 	_SIGINT    = 0x2
     29 	_SIGQUIT   = 0x3
     30 	_SIGILL    = 0x4
     31 	_SIGTRAP   = 0x5
     32 	_SIGABRT   = 0x6
     33 	_SIGEMT    = 0x7
     34 	_SIGFPE    = 0x8
     35 	_SIGKILL   = 0x9
     36 	_SIGBUS    = 0xa
     37 	_SIGSEGV   = 0xb
     38 	_SIGSYS    = 0xc
     39 	_SIGPIPE   = 0xd
     40 	_SIGALRM   = 0xe
     41 	_SIGTERM   = 0xf
     42 	_SIGURG    = 0x10
     43 	_SIGSTOP   = 0x11
     44 	_SIGTSTP   = 0x12
     45 	_SIGCONT   = 0x13
     46 	_SIGCHLD   = 0x14
     47 	_SIGTTIN   = 0x15
     48 	_SIGTTOU   = 0x16
     49 	_SIGIO     = 0x17
     50 	_SIGXCPU   = 0x18
     51 	_SIGXFSZ   = 0x19
     52 	_SIGVTALRM = 0x1a
     53 	_SIGPROF   = 0x1b
     54 	_SIGWINCH  = 0x1c
     55 	_SIGINFO   = 0x1d
     56 	_SIGUSR1   = 0x1e
     57 	_SIGUSR2   = 0x1f
     58 
     59 	_FPE_INTDIV = 0x1
     60 	_FPE_INTOVF = 0x2
     61 	_FPE_FLTDIV = 0x3
     62 	_FPE_FLTOVF = 0x4
     63 	_FPE_FLTUND = 0x5
     64 	_FPE_FLTRES = 0x6
     65 	_FPE_FLTINV = 0x7
     66 	_FPE_FLTSUB = 0x8
     67 
     68 	_BUS_ADRALN = 0x1
     69 	_BUS_ADRERR = 0x2
     70 	_BUS_OBJERR = 0x3
     71 
     72 	_SEGV_MAPERR = 0x1
     73 	_SEGV_ACCERR = 0x2
     74 
     75 	_ITIMER_REAL    = 0x0
     76 	_ITIMER_VIRTUAL = 0x1
     77 	_ITIMER_PROF    = 0x2
     78 
     79 	_EV_ADD       = 0x1
     80 	_EV_DELETE    = 0x2
     81 	_EV_CLEAR     = 0x20
     82 	_EV_ERROR     = 0x4000
     83 	_EVFILT_READ  = -0x1
     84 	_EVFILT_WRITE = -0x2
     85 )
     86 
     87 type tforkt struct {
     88 	tf_tcb   unsafe.Pointer
     89 	tf_tid   *int32
     90 	tf_stack uintptr
     91 }
     92 
     93 type sigaltstackt struct {
     94 	ss_sp     uintptr
     95 	ss_size   uintptr
     96 	ss_flags  int32
     97 	pad_cgo_0 [4]byte
     98 }
     99 
    100 type sigcontext struct {
    101 	sc_rdi      uint64
    102 	sc_rsi      uint64
    103 	sc_rdx      uint64
    104 	sc_rcx      uint64
    105 	sc_r8       uint64
    106 	sc_r9       uint64
    107 	sc_r10      uint64
    108 	sc_r11      uint64
    109 	sc_r12      uint64
    110 	sc_r13      uint64
    111 	sc_r14      uint64
    112 	sc_r15      uint64
    113 	sc_rbp      uint64
    114 	sc_rbx      uint64
    115 	sc_rax      uint64
    116 	sc_gs       uint64
    117 	sc_fs       uint64
    118 	sc_es       uint64
    119 	sc_ds       uint64
    120 	sc_trapno   uint64
    121 	sc_err      uint64
    122 	sc_rip      uint64
    123 	sc_cs       uint64
    124 	sc_rflags   uint64
    125 	sc_rsp      uint64
    126 	sc_ss       uint64
    127 	sc_fpstate  unsafe.Pointer
    128 	__sc_unused int32
    129 	sc_mask     int32
    130 }
    131 
    132 type siginfo struct {
    133 	si_signo  int32
    134 	si_code   int32
    135 	si_errno  int32
    136 	pad_cgo_0 [4]byte
    137 	_data     [120]byte
    138 }
    139 
    140 type stackt struct {
    141 	ss_sp     uintptr
    142 	ss_size   uintptr
    143 	ss_flags  int32
    144 	pad_cgo_0 [4]byte
    145 }
    146 
    147 type timespec struct {
    148 	tv_sec  int64
    149 	tv_nsec int64
    150 }
    151 
    152 func (ts *timespec) set_sec(x int64) {
    153 	ts.tv_sec = x
    154 }
    155 
    156 func (ts *timespec) set_nsec(x int32) {
    157 	ts.tv_nsec = int64(x)
    158 }
    159 
    160 type timeval struct {
    161 	tv_sec  int64
    162 	tv_usec int64
    163 }
    164 
    165 func (tv *timeval) set_usec(x int32) {
    166 	tv.tv_usec = int64(x)
    167 }
    168 
    169 type itimerval struct {
    170 	it_interval timeval
    171 	it_value    timeval
    172 }
    173 
    174 type keventt struct {
    175 	ident  uint64
    176 	filter int16
    177 	flags  uint16
    178 	fflags uint32
    179 	data   int64
    180 	udata  *byte
    181 }
    182