OLD | NEW |
1 #define SIG_DFL ((void*)0) | 1 #define SIG_DFL ((void*)0) |
2 #define SIG_IGN ((void*)1) | 2 #define SIG_IGN ((void*)1) |
3 | 3 |
4 int32 runtime·thr_new(ThrParam*, int32); | 4 int32 runtime·thr_new(ThrParam*, int32); |
5 void runtime·sigpanic(void); | 5 void runtime·sigpanic(void); |
6 void runtime·sigaltstack(Sigaltstack*, Sigaltstack*); | 6 void runtime·sigaltstack(Sigaltstack*, Sigaltstack*); |
7 struct sigaction; | 7 struct sigaction; |
8 void runtime·sigaction(int32, struct sigaction*, struct sigaction*); | 8 void runtime·sigaction(int32, struct sigaction*, struct sigaction*); |
9 void runtiem·setitimerval(int32, Itimerval*, Itimerval*); | 9 void runtiem·setitimerval(int32, Itimerval*, Itimerval*); |
10 void runtime·setitimer(int32, Itimerval*, Itimerval*); | 10 void runtime·setitimer(int32, Itimerval*, Itimerval*); |
11 | 11 |
12 void runtime·raisesigpipe(void); | 12 void runtime·raisesigpipe(void); |
OLD | NEW |