* src/vm/jit/sparc64/emit.c: Implemented trace enter/exit functions.
[cacao.git] / src / vm / signal.c
index a5d0540cf6e097eff3c92579038376d51107af3d..9831fc5ac41f52fff2b2c3f2fa4a62005dec64b6 100644 (file)
@@ -1,9 +1,9 @@
 /* src/vm/signal.c - machine independent signal functions
 
-   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
-   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
-   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
-   Institut f. Computersprachen - TU Wien
+   Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+   J. Wenninger, Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
-   Contact: cacao@complang.tuwien.ac.at
+   Contact: cacao@cacaojvm.org
 
    Authors: Christian Thalinger
 
    Changes:
 
-   $Id: signal.c 3543 2005-11-03 20:34:57Z twisti $
+   $Id: signal.c 5809 2006-10-20 13:09:54Z twisti $
 
 */
 
 
+#include "config.h"
+
 #include <signal.h>
 #include <stdlib.h>
 
-#include "config.h"
+#include "vm/types.h"
 
-#include "cacao/cacao.h"
-
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
+#if defined(ENABLE_THREADS)
 # include "threads/native/threads.h"
 #endif
 
+#include "vm/signallocal.h"
 #include "vm/options.h"
+#include "vm/vm.h"
 #include "vm/jit/stacktrace.h"
 
 
 /* function prototypes ********************************************************/
 
-void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p);
-void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p);
-void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p);
+void signal_handler_sighup(int sig, siginfo_t *siginfo, void *_p);
 void signal_handler_sigint(int sig, siginfo_t *siginfo, void *_p);
-void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p);
+void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p);
 
 
 /* signal_init *****************************************************************
@@ -65,13 +65,18 @@ void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p);
 
 void signal_init(void)
 {
+#if !defined(__CYGWIN__)
        struct sigaction act;
 
+       /* Allocate something so the garbage collector's signal handlers
+          are installed. */
+
+       (void) GCNEW(u1);
+
        /* install signal handlers we need to convert to exceptions */
 
        sigemptyset(&act.sa_mask);
 
-
 #if defined(ENABLE_JIT)
 # if defined(ENABLE_INTRP)
        if (!opt_intrp) {
@@ -79,8 +84,8 @@ void signal_init(void)
                /* catch NullPointerException/StackOverFlowException */
 
                if (!checknull) {
-                       act.sa_sigaction = signal_handler_sigsegv;
-                       act.sa_flags = SA_NODEFER | SA_SIGINFO;
+                       act.sa_sigaction = md_signal_handler_sigsegv;
+                       act.sa_flags     = SA_NODEFER | SA_SIGINFO;
 
 #if defined(SIGSEGV)
                        sigaction(SIGSEGV, &act, NULL);
@@ -91,53 +96,77 @@ void signal_init(void)
 #endif
                }
 
-
                /* catch ArithmeticException */
 
 #if defined(__I386__) || defined(__X86_64__)
-               act.sa_sigaction = signal_handler_sigfpe;
-               act.sa_flags = SA_NODEFER | SA_SIGINFO;
+               act.sa_sigaction = md_signal_handler_sigfpe;
+               act.sa_flags     = SA_NODEFER | SA_SIGINFO;
                sigaction(SIGFPE, &act, NULL);
 #endif
 # if defined(ENABLE_INTRP)
        }
 # endif
-#endif /* !defined(__INTRP__) */
+#endif /* !defined(ENABLE_INTRP) */
 
+#if defined(ENABLE_THREADS)
+       /* catch SIGHUP for threads_thread_interrupt */
+
+       act.sa_sigaction = signal_handler_sighup;
+       act.sa_flags     = 0;
+       sigaction(SIGHUP, &act, NULL);
+#endif
 
        /* catch SIGINT for exiting properly on <ctrl>-c */
 
        act.sa_sigaction = signal_handler_sigint;
-       act.sa_flags = SA_NODEFER | SA_SIGINFO;
+       act.sa_flags     = SA_NODEFER | SA_SIGINFO;
        sigaction(SIGINT, &act, NULL);
 
-
-
+#if defined(ENABLE_THREADS)
        /* catch SIGQUIT for thread dump */
 
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-#if !defined(__FREEBSD__)
+# if !defined(__FREEBSD__)
        act.sa_sigaction = signal_handler_sigquit;
-       act.sa_flags = SA_SIGINFO;
+       act.sa_flags     = SA_SIGINFO;
        sigaction(SIGQUIT, &act, NULL);
+# endif
+#endif
 
-       /* XXX boehm uses SIGUSR1 for suspend on freebsd */
+#if defined(ENABLE_THREADS) && defined(ENABLE_PROFILING)
+       /* install signal handler for profiling sampling */
 
-       act.sa_sigaction = signal_handler_sigusr1;
-       act.sa_flags = SA_SIGINFO;
-       sigaction(SIGUSR1, &act, NULL);
-#endif
+       act.sa_sigaction = md_signal_handler_sigusr2;
+       act.sa_flags     = SA_SIGINFO;
+       sigaction(SIGUSR2, &act, NULL);
 #endif
+
+#endif /* !defined(__CYGWIN__) */
 }
 
 
+/* signal_handler_sighup *******************************************************
+
+   This handler is required by threads_thread_interrupt and does
+   nothing.
+
+*******************************************************************************/
+
+#if defined(ENABLE_THREADS)
+void signal_handler_sighup(int sig, siginfo_t *siginfo, void *_p)
+{
+       /* do nothing */
+}
+#endif
+
+
 /* signal_handler_sigquit ******************************************************
 
-   XXX
+   Handle for SIGQUIT (<ctrl>-\) which print a stacktrace for every
+   running thread.
 
 *******************************************************************************/
 
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
+#if defined(ENABLE_THREADS)
 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p)
 {
        /* do thread dump */
@@ -158,31 +187,15 @@ void signal_handler_sigint(int sig, siginfo_t *siginfo, void *_p)
 {
        /* if we are already in Runtime.exit(), just do it hardcore */
 
-       if (cacao_exiting) {
-               fprintf(stderr, "Catched SIGINT while already shutting down. Shutdown aborted...\n");
+       if (vm_exiting) {
+               fprintf(stderr, "Caught SIGINT while already shutting down. Shutdown aborted...\n");
                exit(0);
        }
 
        /* exit the vm properly */
 
-       cacao_exit(0);
-}
-
-
-/* signal_handler_sigusr1 ******************************************************
-
-   XXX
-
-*******************************************************************************/
-
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
-{
-       /* call stacktrace function */
-
-       stacktrace_dump_trace();
+       vm_exit(0);
 }
-#endif
 
 
 /*