make run: Use -vga std
[snowy-minesweeper.git] / include / signal.h
blobd680a657e6f7cdbc9483ef4ba88c02625c77d5d2
1 #ifndef _SIGNAL_H
2 #define _SIGNAL_H
4 #include <console.h>
6 #define SIGHUP 1
7 #define SIGINT 2
8 #define SIGQUIT 3
9 #define SIGILL 4
10 #define SIGTRAP 5
11 #define SIGABRT 6
12 #define SIGIOT 6
13 #define SIGBUS 7
14 #define SIGFPE 8
15 #define SIGKILL 9
16 #define SIGUSR1 10
17 #define SIGSEGV 11
18 #define SIGUSR2 12
19 #define SIGPIPE 13
20 #define SIGALRM 14
21 #define SIGTERM 15
22 #define SIGSTKFLT 16
23 #define SIGCLD 17
24 #define SIGCHLD 17
25 #define SIGCONT 18
26 #define SIGSTOP 19
27 #define SIGTSTP 20
28 #define SIGTTIN 21
29 #define SIGTTOU 22
30 #define SIGURG 23
31 #define SIGXCPU 24
32 #define SIGXFSZ 25
33 #define SIGVTALRM 26
34 #define SIGPROF 27
35 #define SIGWINCH 28
36 #define SIGPOLL 29
37 #define SIGIO 29
38 #define SIGPWR 30
39 #define SIGSYS 31
41 static inline int raise(int sig)
43 panic("Signal %d raised", sig);
44 return 0;
47 #endif