github.com/twelsh-aw/go/src@v0.0.0-20230516233729-a56fe86a7c81/runtime/defs_openbsd_arm.go (about)

     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  	_F_SETFD    = 0x2
    39  	_F_GETFL    = 0x3
    40  	_F_SETFL    = 0x4
    41  	_FD_CLOEXEC = 0x1
    42  
    43  	_SIGHUP    = 0x1
    44  	_SIGINT    = 0x2
    45  	_SIGQUIT   = 0x3
    46  	_SIGILL    = 0x4
    47  	_SIGTRAP   = 0x5
    48  	_SIGABRT   = 0x6
    49  	_SIGEMT    = 0x7
    50  	_SIGFPE    = 0x8
    51  	_SIGKILL   = 0x9
    52  	_SIGBUS    = 0xa
    53  	_SIGSEGV   = 0xb
    54  	_SIGSYS    = 0xc
    55  	_SIGPIPE   = 0xd
    56  	_SIGALRM   = 0xe
    57  	_SIGTERM   = 0xf
    58  	_SIGURG    = 0x10
    59  	_SIGSTOP   = 0x11
    60  	_SIGTSTP   = 0x12
    61  	_SIGCONT   = 0x13
    62  	_SIGCHLD   = 0x14
    63  	_SIGTTIN   = 0x15
    64  	_SIGTTOU   = 0x16
    65  	_SIGIO     = 0x17
    66  	_SIGXCPU   = 0x18
    67  	_SIGXFSZ   = 0x19
    68  	_SIGVTALRM = 0x1a
    69  	_SIGPROF   = 0x1b
    70  	_SIGWINCH  = 0x1c
    71  	_SIGINFO   = 0x1d
    72  	_SIGUSR1   = 0x1e
    73  	_SIGUSR2   = 0x1f
    74  
    75  	_FPE_INTDIV = 0x1
    76  	_FPE_INTOVF = 0x2
    77  	_FPE_FLTDIV = 0x3
    78  	_FPE_FLTOVF = 0x4
    79  	_FPE_FLTUND = 0x5
    80  	_FPE_FLTRES = 0x6
    81  	_FPE_FLTINV = 0x7
    82  	_FPE_FLTSUB = 0x8
    83  
    84  	_BUS_ADRALN = 0x1
    85  	_BUS_ADRERR = 0x2
    86  	_BUS_OBJERR = 0x3
    87  
    88  	_SEGV_MAPERR = 0x1
    89  	_SEGV_ACCERR = 0x2
    90  
    91  	_ITIMER_REAL    = 0x0
    92  	_ITIMER_VIRTUAL = 0x1
    93  	_ITIMER_PROF    = 0x2
    94  
    95  	_EV_ADD       = 0x1
    96  	_EV_DELETE    = 0x2
    97  	_EV_CLEAR     = 0x20
    98  	_EV_ERROR     = 0x4000
    99  	_EV_EOF       = 0x8000
   100  	_EVFILT_READ  = -0x1
   101  	_EVFILT_WRITE = -0x2
   102  )
   103  
   104  type tforkt struct {
   105  	tf_tcb   unsafe.Pointer
   106  	tf_tid   *int32
   107  	tf_stack uintptr
   108  }
   109  
   110  type sigcontext struct {
   111  	__sc_unused int32
   112  	sc_mask     int32
   113  
   114  	sc_spsr   uint32
   115  	sc_r0     uint32
   116  	sc_r1     uint32
   117  	sc_r2     uint32
   118  	sc_r3     uint32
   119  	sc_r4     uint32
   120  	sc_r5     uint32
   121  	sc_r6     uint32
   122  	sc_r7     uint32
   123  	sc_r8     uint32
   124  	sc_r9     uint32
   125  	sc_r10    uint32
   126  	sc_r11    uint32
   127  	sc_r12    uint32
   128  	sc_usr_sp uint32
   129  	sc_usr_lr uint32
   130  	sc_svc_lr uint32
   131  	sc_pc     uint32
   132  	sc_fpused uint32
   133  	sc_fpscr  uint32
   134  	sc_fpreg  [32]uint64
   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  }
   150  
   151  type timespec struct {
   152  	tv_sec    int64
   153  	tv_nsec   int32
   154  	pad_cgo_0 [4]byte
   155  }
   156  
   157  //go:nosplit
   158  func (ts *timespec) setNsec(ns int64) {
   159  	ts.tv_sec = int64(timediv(ns, 1e9, &ts.tv_nsec))
   160  }
   161  
   162  type timeval struct {
   163  	tv_sec    int64
   164  	tv_usec   int32
   165  	pad_cgo_0 [4]byte
   166  }
   167  
   168  func (tv *timeval) set_usec(x int32) {
   169  	tv.tv_usec = x
   170  }
   171  
   172  type itimerval struct {
   173  	it_interval timeval
   174  	it_value    timeval
   175  }
   176  
   177  type keventt struct {
   178  	ident     uint32
   179  	filter    int16
   180  	flags     uint16
   181  	fflags    uint32
   182  	pad_cgo_0 [4]byte
   183  	data      int64
   184  	udata     *byte
   185  	pad_cgo_1 [4]byte
   186  }
   187  
   188  type pthread uintptr
   189  type pthreadattr uintptr
   190  type pthreadcond uintptr
   191  type pthreadcondattr uintptr
   192  type pthreadmutex uintptr
   193  type pthreadmutexattr uintptr