* signal_init: added SA_NODEFER to signal flags for sigsegv and sigfpe
[cacao.git] / src / vm / signal.c
1 /* src/vm/signal.c - machine independent signal functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: signal.c 2968 2005-07-10 15:18:21Z twisti $
32
33 */
34
35
36 #include <signal.h>
37
38 #include "config.h"
39
40 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
41 # include "threads/native/threads.h"
42 #endif
43
44 #include "vm/options.h"
45 #include "vm/jit/stacktrace.h"
46
47
48 /* function prototypes ********************************************************/
49
50 void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p);
51 void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p);
52 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p);
53 void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p);
54
55
56 /* signal_init *****************************************************************
57
58    Initializes the signal subsystem and installs the signal handler.
59
60 *******************************************************************************/
61
62 void signal_init(void)
63 {
64         struct sigaction act;
65
66         /* install signal handlers we need to convert to exceptions */
67
68         sigemptyset(&act.sa_mask);
69
70
71         /* catch NullPointerException/StackOverFlowException */
72
73         if (!checknull) {
74                 act.sa_sigaction = signal_handler_sigsegv;
75                 act.sa_flags = SA_NODEFER | SA_SIGINFO;
76
77 #if defined(SIGSEGV)
78                 sigaction(SIGSEGV, &act, NULL);
79 #endif
80
81 #if defined(SIGBUS)
82                 sigaction(SIGBUS, &act, NULL);
83 #endif
84         }
85
86
87         /* catch ArithmeticException */
88
89 #if defined(__I386__) || defined(__X86_64__)
90         act.sa_sigaction = signal_handler_sigfpe;
91         act.sa_flags = SA_NODEFER | SA_SIGINFO;
92         sigaction(SIGFPE, &act, NULL);
93 #endif
94
95
96         /* catch SIGQUIT for thread dump */
97
98 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
99         act.sa_sigaction = signal_handler_sigquit;
100         act.sa_flags = SA_SIGINFO;
101         sigaction(SIGQUIT, &act, NULL);
102
103         act.sa_sigaction = signal_handler_sigusr1;
104         act.sa_flags = SA_SIGINFO;
105         sigaction(SIGUSR1, &act, NULL);
106 #endif
107 }
108
109
110 /* signal_handler_sigquit ******************************************************
111
112    XXX
113
114 *******************************************************************************/
115
116 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
117 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p)
118 {
119         /* do thread dump */
120
121         thread_dump();
122 }
123 #endif
124
125
126 /* signal_handler_sigusr1 ******************************************************
127
128    XXX
129
130 *******************************************************************************/
131
132 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
133 void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
134 {
135         /* call stacktrace function */
136
137         stacktrace_dump_trace();
138 }
139 #endif
140
141
142 /*
143  * These are local overrides for various environment variables in Emacs.
144  * Please do not remove this and leave it at the end of the file, where
145  * Emacs will automagically detect them.
146  * ---------------------------------------------------------------------
147  * Local variables:
148  * mode: c
149  * indent-tabs-mode: t
150  * c-basic-offset: 4
151  * tab-width: 4
152  * End:
153  */