LEFT | RIGHT |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // +build ignore | 5 // +build ignore |
6 | 6 |
7 /* | 7 /* |
8 Input to cgo. | 8 Input to cgo. |
9 | 9 |
10 GOARCH=amd64 go tool cgo -cdefs defs_openbsd.go >defs_openbsd_amd64.h | 10 GOARCH=amd64 go tool cgo -cdefs defs_openbsd.go >defs_openbsd_amd64.h |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 type Siginfo C.siginfo_t | 111 type Siginfo C.siginfo_t |
112 type Sigset C.sigset_t | 112 type Sigset C.sigset_t |
113 type Sigval C.union_sigval | 113 type Sigval C.union_sigval |
114 | 114 |
115 type StackT C.stack_t | 115 type StackT C.stack_t |
116 | 116 |
117 type Timespec C.struct_timespec | 117 type Timespec C.struct_timespec |
118 type Timeval C.struct_timeval | 118 type Timeval C.struct_timeval |
119 type Itimerval C.struct_itimerval | 119 type Itimerval C.struct_itimerval |
120 | 120 |
121 type Kevent C.struct_kevent | 121 type KeventT C.struct_kevent |
LEFT | RIGHT |