1999-04-20 08:27:11 +02:00
|
|
|
// sparc-signal.h - Catch runtime signals and turn them into exceptions.
|
|
|
|
|
2009-12-08 19:38:23 +01:00
|
|
|
/* Copyright (C) 1998, 1999, 2000, 2009 Free Software Foundation
|
1999-04-20 08:27:11 +02:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#ifndef JAVA_SIGNAL_H
|
|
|
|
#define JAVA_SIGNAL_H 1
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#define HANDLE_SEGV 1
|
|
|
|
#define HANDLE_FPE 1
|
|
|
|
|
2009-12-08 19:38:23 +01:00
|
|
|
#define SIGNAL_HANDLER(_name) \
|
|
|
|
static void _Jv_##_name (int, \
|
|
|
|
siginfo_t *_si __attribute__ ((__unused__)), \
|
|
|
|
void *_uc __attribute__ ((__unused__)))
|
1999-04-20 08:27:11 +02:00
|
|
|
|
2009-12-08 19:38:23 +01:00
|
|
|
#define MAKE_THROW_FRAME(_exception)
|
1999-04-20 08:27:11 +02:00
|
|
|
|
|
|
|
#define INIT_SEGV \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
struct sigaction act; \
|
2009-12-08 19:38:23 +01:00
|
|
|
act.sa_sigaction = _Jv_catch_segv; \
|
1999-05-21 08:03:30 +02:00
|
|
|
act.sa_flags = SA_SIGINFO | SA_NODEFER; \
|
1999-04-20 08:27:11 +02:00
|
|
|
sigemptyset (&act.sa_mask); \
|
|
|
|
sigaction (SIGSEGV, &act, NULL); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define INIT_FPE \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
struct sigaction act; \
|
2009-12-08 19:38:23 +01:00
|
|
|
act.sa_sigaction = _Jv_catch_fpe; \
|
1999-05-21 08:03:30 +02:00
|
|
|
act.sa_flags = SA_SIGINFO | SA_NODEFER; \
|
1999-04-20 08:27:11 +02:00
|
|
|
sigemptyset (&act.sa_mask); \
|
|
|
|
sigaction (SIGFPE, &act, NULL); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#endif /* JAVA_SIGNAL_H */
|