OLD | NEW |
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 /* | 5 /* |
6 Input to cgo -cdefs | 6 Input to cgo -cdefs |
7 | 7 |
8 GOARCH=amd64 cgo -cdefs defs.go defs1.go >amd64/defs.h | 8 GOARCH=amd64 cgo -cdefs defs.go defs1.go >amd64/defs.h |
9 */ | 9 */ |
10 | 10 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 ITIMER_REAL = C.ITIMER_REAL | 93 ITIMER_REAL = C.ITIMER_REAL |
94 ITIMER_VIRTUAL = C.ITIMER_VIRTUAL | 94 ITIMER_VIRTUAL = C.ITIMER_VIRTUAL |
95 ITIMER_PROF = C.ITIMER_PROF | 95 ITIMER_PROF = C.ITIMER_PROF |
96 ) | 96 ) |
97 | 97 |
98 type Timespec C.struct_timespec | 98 type Timespec C.struct_timespec |
99 type Timeval C.struct_timeval | 99 type Timeval C.struct_timeval |
100 type Sigaction C.struct_sigaction | 100 type Sigaction C.struct_sigaction |
101 type Siginfo C.siginfo_t | 101 type Siginfo C.siginfo_t |
102 type Itimerval C.struct_itimerval | 102 type Itimerval C.struct_itimerval |
OLD | NEW |