Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / _OSF1 / signal.h
1 #ifndef _SYSSIGNALH
2 #define _SYSSIGNALH
3
4 #define SIGHUP     1    
5 #define SIGINT     2    
6 #define SIGQUIT    3    
7 #define SIGILL     4    
8 #define SIGTRAP    5    
9 #define SIGABRT    6    
10 #define SIGEMT     7    
11 #define SIGFPE     8    
12 #define SIGKILL    9    
13 #define SIGBUS    10    
14 #define SIGSEGV   11    
15 #define SIGSYS    12    
16 #define SIGPIPE   13    
17 #define SIGALRM   14    
18 #define SIGTERM   15    
19 #define SIGURG    16    
20 #define SIGSTOP   17    
21 #define SIGTSTP   18    
22 #define SIGCONT   19    
23 #define SIGCHLD   20    
24 #define SIGTTIN   21    
25 #define SIGTTOU   22    
26 #define SIGIO     23    
27 #define SIGXCPU   24    
28 #define SIGXFSZ   25    
29 #define SIGVTALRM 26    
30 #define SIGPROF   27    
31 #define SIGWINCH  28    
32 #define SIGINFO   29    
33 #define SIGUSR1   30    
34 #define SIGUSR2   31    
35
36
37 /* signal() args & returns */
38 #define SIG_ERR         (void (*)())-1
39 #define SIG_DFL         (void (*)())0
40 #define SIG_IGN         (void (*)())1
41  
42 #endif
43
44
45