Source file src/runtime/defs_openbsd_amd64.go

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

View as plain text