Source file src/runtime/defs1_netbsd_arm64.go

     1  // created by cgo -cdefs and then converted to Go
     2  // cgo -cdefs defs_netbsd.go defs_netbsd_arm.go
     3  
     4  package runtime
     5  
     6  const (
     7  	_EINTR  = 0x4
     8  	_EFAULT = 0xe
     9  	_EAGAIN = 0x23
    10  
    11  	_O_WRONLY   = 0x1
    12  	_O_NONBLOCK = 0x4
    13  	_O_CREAT    = 0x200
    14  	_O_TRUNC    = 0x400
    15  	_O_CLOEXEC  = 0x400000
    16  
    17  	_PROT_NONE  = 0x0
    18  	_PROT_READ  = 0x1
    19  	_PROT_WRITE = 0x2
    20  	_PROT_EXEC  = 0x4
    21  
    22  	_MAP_ANON    = 0x1000
    23  	_MAP_PRIVATE = 0x2
    24  	_MAP_FIXED   = 0x10
    25  
    26  	_MADV_DONTNEED = 0x4
    27  	_MADV_FREE     = 0x6
    28  
    29  	_SA_SIGINFO = 0x40
    30  	_SA_RESTART = 0x2
    31  	_SA_ONSTACK = 0x1
    32  
    33  	_SIGHUP    = 0x1
    34  	_SIGINT    = 0x2
    35  	_SIGQUIT   = 0x3
    36  	_SIGILL    = 0x4
    37  	_SIGTRAP   = 0x5
    38  	_SIGABRT   = 0x6
    39  	_SIGEMT    = 0x7
    40  	_SIGFPE    = 0x8
    41  	_SIGKILL   = 0x9
    42  	_SIGBUS    = 0xa
    43  	_SIGSEGV   = 0xb
    44  	_SIGSYS    = 0xc
    45  	_SIGPIPE   = 0xd
    46  	_SIGALRM   = 0xe
    47  	_SIGTERM   = 0xf
    48  	_SIGURG    = 0x10
    49  	_SIGSTOP   = 0x11
    50  	_SIGTSTP   = 0x12
    51  	_SIGCONT   = 0x13
    52  	_SIGCHLD   = 0x14
    53  	_SIGTTIN   = 0x15
    54  	_SIGTTOU   = 0x16
    55  	_SIGIO     = 0x17
    56  	_SIGXCPU   = 0x18
    57  	_SIGXFSZ   = 0x19
    58  	_SIGVTALRM = 0x1a
    59  	_SIGPROF   = 0x1b
    60  	_SIGWINCH  = 0x1c
    61  	_SIGINFO   = 0x1d
    62  	_SIGUSR1   = 0x1e
    63  	_SIGUSR2   = 0x1f
    64  
    65  	_FPE_INTDIV = 0x1
    66  	_FPE_INTOVF = 0x2
    67  	_FPE_FLTDIV = 0x3
    68  	_FPE_FLTOVF = 0x4
    69  	_FPE_FLTUND = 0x5
    70  	_FPE_FLTRES = 0x6
    71  	_FPE_FLTINV = 0x7
    72  	_FPE_FLTSUB = 0x8
    73  
    74  	_BUS_ADRALN = 0x1
    75  	_BUS_ADRERR = 0x2
    76  	_BUS_OBJERR = 0x3
    77  
    78  	_SEGV_MAPERR = 0x1
    79  	_SEGV_ACCERR = 0x2
    80  
    81  	_ITIMER_REAL    = 0x0
    82  	_ITIMER_VIRTUAL = 0x1
    83  	_ITIMER_PROF    = 0x2
    84  
    85  	_EV_ADD       = 0x1
    86  	_EV_DELETE    = 0x2
    87  	_EV_ENABLE    = 0x4
    88  	_EV_DISABLE   = 0x8
    89  	_EV_CLEAR     = 0x20
    90  	_EV_RECEIPT   = 0
    91  	_EV_ERROR     = 0x4000
    92  	_EV_EOF       = 0x8000
    93  	_EVFILT_READ  = 0x0
    94  	_EVFILT_WRITE = 0x1
    95  	_EVFILT_USER  = 0x8
    96  
    97  	_NOTE_TRIGGER = 0x1000000
    98  )
    99  
   100  type sigset struct {
   101  	__bits [4]uint32
   102  }
   103  
   104  type siginfo struct {
   105  	_signo   int32
   106  	_code    int32
   107  	_errno   int32
   108  	_reason  uintptr
   109  	_reasonx [16]byte
   110  }
   111  
   112  type stackt struct {
   113  	ss_sp    uintptr
   114  	ss_size  uintptr
   115  	ss_flags int32
   116  }
   117  
   118  type timespec struct {
   119  	tv_sec  int64
   120  	tv_nsec int64
   121  }
   122  
   123  func (ts *timespec) setNsec(ns int64) {
   124  	ts.tv_sec = ns / 1e9
   125  	ts.tv_nsec = ns % 1e9
   126  }
   127  
   128  type timeval struct {
   129  	tv_sec  int64
   130  	tv_usec int32
   131  	_       [4]byte // EABI
   132  }
   133  
   134  func (tv *timeval) set_usec(x int32) {
   135  	tv.tv_usec = x
   136  }
   137  
   138  type itimerval struct {
   139  	it_interval timeval
   140  	it_value    timeval
   141  }
   142  
   143  type mcontextt struct {
   144  	__gregs [35]uint64
   145  	__fregs [4160]byte // _NFREG * 128 + 32 + 32
   146  	_       [8]uint64  // future use
   147  }
   148  
   149  type ucontextt struct {
   150  	uc_flags    uint32
   151  	uc_link     *ucontextt
   152  	uc_sigmask  sigset
   153  	uc_stack    stackt
   154  	_           [4]byte // EABI
   155  	uc_mcontext mcontextt
   156  	__uc_pad    [2]int32
   157  }
   158  
   159  type keventt struct {
   160  	ident     uint64
   161  	filter    uint32
   162  	flags     uint32
   163  	fflags    uint32
   164  	pad_cgo_0 [4]byte
   165  	data      int64
   166  	udata     *byte
   167  }
   168  
   169  // created by cgo -cdefs and then converted to Go
   170  // cgo -cdefs defs_netbsd.go defs_netbsd_arm.go
   171  
   172  const (
   173  	_REG_X0    = 0
   174  	_REG_X1    = 1
   175  	_REG_X2    = 2
   176  	_REG_X3    = 3
   177  	_REG_X4    = 4
   178  	_REG_X5    = 5
   179  	_REG_X6    = 6
   180  	_REG_X7    = 7
   181  	_REG_X8    = 8
   182  	_REG_X9    = 9
   183  	_REG_X10   = 10
   184  	_REG_X11   = 11
   185  	_REG_X12   = 12
   186  	_REG_X13   = 13
   187  	_REG_X14   = 14
   188  	_REG_X15   = 15
   189  	_REG_X16   = 16
   190  	_REG_X17   = 17
   191  	_REG_X18   = 18
   192  	_REG_X19   = 19
   193  	_REG_X20   = 20
   194  	_REG_X21   = 21
   195  	_REG_X22   = 22
   196  	_REG_X23   = 23
   197  	_REG_X24   = 24
   198  	_REG_X25   = 25
   199  	_REG_X26   = 26
   200  	_REG_X27   = 27
   201  	_REG_X28   = 28
   202  	_REG_X29   = 29
   203  	_REG_X30   = 30
   204  	_REG_X31   = 31
   205  	_REG_ELR   = 32
   206  	_REG_SPSR  = 33
   207  	_REG_TPIDR = 34
   208  )
   209  

View as plain text