Netcruzer Library API  V2.03
 All Data Structures Files Functions Variables Typedefs Enumerations Macros Groups Pages
signal.h
Go to the documentation of this file.
1 
38 typedef int sig_atomic_t;
39 
40 
41 
48 #define SIG_DFL ((void (*)(int))0)
49 
50 
51 
58 #define SIG_ERR ((void (*)(int))-1)
59 
60 
61 
68 #define SIG_IGN ((void (*)(int))1)
69 
70 
71 
100 #define SIGABRT 1
101 
102 
103 
132 #define SIGFPE 4
133 
134 
135 
163 #define SIGILL 3
164 
165 
166 
194 #define SIGINT 2
195 
196 
197 
225 #define SIGSEGV 5
226 
227 
228 
256 #define SIGTERM 6
257 
258 
259 
319 int raise(int sig);
320 
321 
322 
384 void (*signal(int sig, void(*func)(int)))(int);