Commit 0d072f22 by Andrew Haley Committed by Andrew Haley

i386-signal.h: Replace sigaction () with __sigaction ().

1999-07-01  Andrew Haley  <aph@cygnus.com>
	* include/i386-signal.h: Replace sigaction () with __sigaction ().
	This is a workaround for a bug in glibc's pthreads package which
	doesn't deliver any sigcontext information to a signal handler.

From-SVN: r27876
parent ed534bdd
1999-07-01 Andrew Haley <aph@cygnus.com>
* include/i386-signal.h: Replace sigaction () with __sigaction ().
This is a workaround for a bug in glibc's pthreads package which
doesn't deliver any sigcontext information to a signal handler.
1999-06-24 Tom Tromey <tromey@cygnus.com> 1999-06-24 Tom Tromey <tromey@cygnus.com>
* java/lang/e_asin.c: Don't use __int32_t or __uint32_t. * java/lang/e_asin.c: Don't use __int32_t or __uint32_t.
......
...@@ -114,7 +114,7 @@ do \ ...@@ -114,7 +114,7 @@ do \
act.sa_handler = catch_segv; \ act.sa_handler = catch_segv; \
sigemptyset (&act.sa_mask); \ sigemptyset (&act.sa_mask); \
act.sa_flags = 0; \ act.sa_flags = 0; \
sigaction (SIGSEGV, &act, NULL); \ __sigaction (SIGSEGV, &act, NULL); \
} \ } \
while (0) while (0)
...@@ -127,7 +127,7 @@ do \ ...@@ -127,7 +127,7 @@ do \
act.sa_handler = catch_fpe; \ act.sa_handler = catch_fpe; \
sigemptyset (&act.sa_mask); \ sigemptyset (&act.sa_mask); \
act.sa_flags = 0; \ act.sa_flags = 0; \
sigaction (SIGFPE, &act, NULL); \ __sigaction (SIGFPE, &act, NULL); \
} \ } \
while (0) while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment