LEFT | RIGHT |
(no file at all) | |
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 #define SIG_DFL ((void*)0) | 5 #define SIG_DFL ((void*)0) |
6 #define SIG_IGN ((void*)1) | 6 #define SIG_IGN ((void*)1) |
7 | 7 |
8 int32 runtime·bsdthread_create(void*, M*, G*, void(*)(void)); | 8 int32 runtime·bsdthread_create(void*, M*, G*, void(*)(void)); |
9 void runtime·bsdthread_register(void); | 9 void runtime·bsdthread_register(void); |
10 int32 runtime·mach_msg_trap(MachHeader*, int32, uint32, uint32, uint32, uint32
, uint32); | 10 int32 runtime·mach_msg_trap(MachHeader*, int32, uint32, uint32, uint32, uint32
, uint32); |
11 uint32 runtime·mach_reply_port(void); | 11 uint32 runtime·mach_reply_port(void); |
12 void runtime·mach_semacquire(uint32); | 12 void runtime·mach_semacquire(uint32); |
13 uint32 runtime·mach_semcreate(void); | 13 uint32 runtime·mach_semcreate(void); |
14 void runtime·mach_semdestroy(uint32); | 14 void runtime·mach_semdestroy(uint32); |
15 void runtime·mach_semrelease(uint32); | 15 void runtime·mach_semrelease(uint32); |
16 void runtime·mach_semreset(uint32); | 16 void runtime·mach_semreset(uint32); |
17 uint32 runtime·mach_task_self(void); | 17 uint32 runtime·mach_task_self(void); |
18 uint32 runtime·mach_task_self(void); | 18 uint32 runtime·mach_task_self(void); |
19 uint32 runtime·mach_thread_self(void); | 19 uint32 runtime·mach_thread_self(void); |
20 uint32 runtime·mach_thread_self(void); | 20 uint32 runtime·mach_thread_self(void); |
21 | 21 |
22 struct Sigaction; | 22 struct Sigaction; |
23 void runtime·sigaction(uintptr, struct Sigaction*, struct Sigaction*); | 23 void runtime·sigaction(uintptr, struct Sigaction*, struct Sigaction*); |
24 | 24 |
25 struct StackT; | 25 struct StackT; |
26 void runtime·sigaltstack(struct StackT*, struct StackT*); | 26 void runtime·sigaltstack(struct StackT*, struct StackT*); |
27 void runtime·sigtramp(void); | 27 void runtime·sigtramp(void); |
28 void runtime·sigpanic(void); | 28 void runtime·sigpanic(void); |
29 void runtime·setitimer(int32, Itimerval*, Itimerval*); | 29 void runtime·setitimer(int32, Itimerval*, Itimerval*); |
| 30 |
| 31 void runtime·raisesigpipe(void); |
LEFT | RIGHT |