diff options
author | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-15 19:19:50 +0000 |
---|---|---|
committer | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-15 19:19:50 +0000 |
commit | 1ff77cbec9072955d04d4d511d92ac3b8279b10d (patch) | |
tree | 75cc0544545c8da21e01bcf93967a21d8bd2136f /libjava/include/i386-signal.h | |
parent | 7c98efceb58c58c32761966dec0227a41fabe704 (diff) | |
download | gcc-1ff77cbec9072955d04d4d511d92ac3b8279b10d.tar.gz |
2001-02-14 Andrew Haley <aph@redhat.com>
* include/i386-signal.h (INIT_SEGV): Use a direct system call to
set the handler.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39724 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/i386-signal.h')
-rw-r--r-- | libjava/include/i386-signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/include/i386-signal.h b/libjava/include/i386-signal.h index de2e39cdbc2..dc3c1122c51 100644 --- a/libjava/include/i386-signal.h +++ b/libjava/include/i386-signal.h @@ -128,7 +128,7 @@ do \ act.sa_handler = catch_segv; \ sigemptyset (&act.sa_mask); \ act.sa_flags = 0; \ - __sigaction (SIGSEGV, &act, NULL); \ + syscall (SYS_sigaction, SIGSEGV, &act, NULL); \ } \ while (0) |