github.com/zach-klippenstein/go@v0.0.0-20150108044943-fcfbeb3adf58/src/runtime/defs_dragonfly_386.go (about)

     1  // created by cgo -cdefs and then converted to Go
     2  // cgo -cdefs defs_dragonfly.go
     3  
     4  package runtime
     5  
     6  import "unsafe"
     7  
     8  const (
     9  	_EINTR  = 0x4
    10  	_EFAULT = 0xe
    11  	_EBUSY  = 0x10
    12  	_EAGAIN = 0x23
    13  
    14  	_PROT_NONE  = 0x0
    15  	_PROT_READ  = 0x1
    16  	_PROT_WRITE = 0x2
    17  	_PROT_EXEC  = 0x4
    18  
    19  	_MAP_ANON    = 0x1000
    20  	_MAP_PRIVATE = 0x2
    21  	_MAP_FIXED   = 0x10
    22  
    23  	_MADV_FREE = 0x5
    24  
    25  	_SA_SIGINFO = 0x40
    26  	_SA_RESTART = 0x2
    27  	_SA_ONSTACK = 0x1
    28  
    29  	_SIGHUP    = 0x1
    30  	_SIGINT    = 0x2
    31  	_SIGQUIT   = 0x3
    32  	_SIGILL    = 0x4
    33  	_SIGTRAP   = 0x5
    34  	_SIGABRT   = 0x6
    35  	_SIGEMT    = 0x7
    36  	_SIGFPE    = 0x8
    37  	_SIGKILL   = 0x9
    38  	_SIGBUS    = 0xa
    39  	_SIGSEGV   = 0xb
    40  	_SIGSYS    = 0xc
    41  	_SIGPIPE   = 0xd
    42  	_SIGALRM   = 0xe
    43  	_SIGTERM   = 0xf
    44  	_SIGURG    = 0x10
    45  	_SIGSTOP   = 0x11
    46  	_SIGTSTP   = 0x12
    47  	_SIGCONT   = 0x13
    48  	_SIGCHLD   = 0x14
    49  	_SIGTTIN   = 0x15
    50  	_SIGTTOU   = 0x16
    51  	_SIGIO     = 0x17
    52  	_SIGXCPU   = 0x18
    53  	_SIGXFSZ   = 0x19
    54  	_SIGVTALRM = 0x1a
    55  	_SIGPROF   = 0x1b
    56  	_SIGWINCH  = 0x1c
    57  	_SIGINFO   = 0x1d
    58  	_SIGUSR1   = 0x1e
    59  	_SIGUSR2   = 0x1f
    60  
    61  	_FPE_INTDIV = 0x2
    62  	_FPE_INTOVF = 0x1
    63  	_FPE_FLTDIV = 0x3
    64  	_FPE_FLTOVF = 0x4
    65  	_FPE_FLTUND = 0x5
    66  	_FPE_FLTRES = 0x6
    67  	_FPE_FLTINV = 0x7
    68  	_FPE_FLTSUB = 0x8
    69  
    70  	_BUS_ADRALN = 0x1
    71  	_BUS_ADRERR = 0x2
    72  	_BUS_OBJERR = 0x3
    73  
    74  	_SEGV_MAPERR = 0x1
    75  	_SEGV_ACCERR = 0x2
    76  
    77  	_ITIMER_REAL    = 0x0
    78  	_ITIMER_VIRTUAL = 0x1
    79  	_ITIMER_PROF    = 0x2
    80  
    81  	_EV_ADD       = 0x1
    82  	_EV_DELETE    = 0x2
    83  	_EV_CLEAR     = 0x20
    84  	_EV_ERROR     = 0x4000
    85  	_EVFILT_READ  = -0x1
    86  	_EVFILT_WRITE = -0x2
    87  )
    88  
    89  type rtprio struct {
    90  	_type uint16
    91  	prio  uint16
    92  }
    93  
    94  type lwpparams struct {
    95  	start_func uintptr
    96  	arg        unsafe.Pointer
    97  	stack      uintptr
    98  	tid1       unsafe.Pointer // *int32
    99  	tid2       unsafe.Pointer // *int32
   100  }
   101  
   102  type sigaltstackt struct {
   103  	ss_sp    uintptr
   104  	ss_size  uintptr
   105  	ss_flags int32
   106  }
   107  
   108  type sigset struct {
   109  	__bits [4]uint32
   110  }
   111  
   112  type stackt struct {
   113  	ss_sp    uintptr
   114  	ss_size  uintptr
   115  	ss_flags int32
   116  }
   117  
   118  type siginfo struct {
   119  	si_signo  int32
   120  	si_errno  int32
   121  	si_code   int32
   122  	si_pid    int32
   123  	si_uid    uint32
   124  	si_status int32
   125  	si_addr   uintptr
   126  	si_value  [4]byte
   127  	si_band   int32
   128  	__spare__ [7]int32
   129  }
   130  
   131  type mcontext struct {
   132  	mc_onstack  uint32
   133  	mc_gs       uint32
   134  	mc_fs       uint32
   135  	mc_es       uint32
   136  	mc_ds       uint32
   137  	mc_edi      uint32
   138  	mc_esi      uint32
   139  	mc_ebp      uint32
   140  	mc_isp      uint32
   141  	mc_ebx      uint32
   142  	mc_edx      uint32
   143  	mc_ecx      uint32
   144  	mc_eax      uint32
   145  	mc_xflags   uint32
   146  	mc_trapno   uint32
   147  	mc_err      uint32
   148  	mc_eip      uint32
   149  	mc_cs       uint32
   150  	mc_eflags   uint32
   151  	mc_esp      uint32
   152  	mc_ss       uint32
   153  	mc_len      uint32
   154  	mc_fpformat uint32
   155  	mc_ownedfp  uint32
   156  	mc_fpregs   [128]uint32
   157  	__spare__   [16]uint32
   158  }
   159  
   160  type ucontext struct {
   161  	uc_sigmask  sigset
   162  	uc_mcontext mcontext
   163  	uc_link     *ucontext
   164  	uc_stack    stackt
   165  	__spare__   [8]int32
   166  }
   167  
   168  type timespec struct {
   169  	tv_sec  int32
   170  	tv_nsec int32
   171  }
   172  
   173  func (ts *timespec) set_sec(x int64) {
   174  	ts.tv_sec = int32(x)
   175  }
   176  
   177  type timeval struct {
   178  	tv_sec  int32
   179  	tv_usec int32
   180  }
   181  
   182  func (tv *timeval) set_usec(x int32) {
   183  	tv.tv_usec = x
   184  }
   185  
   186  type itimerval struct {
   187  	it_interval timeval
   188  	it_value    timeval
   189  }
   190  
   191  type keventt struct {
   192  	ident  uint32
   193  	filter int16
   194  	flags  uint16
   195  	fflags uint32
   196  	data   int32
   197  	udata  *byte
   198  }