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
+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>
* java/lang/e_asin.c: Don't use __int32_t or __uint32_t.
act.sa_handler = catch_segv; \
sigemptyset (&act.sa_mask); \
act.sa_flags = 0; \
- sigaction (SIGSEGV, &act, NULL); \
+ __sigaction (SIGSEGV, &act, NULL); \
} \
while (0)
act.sa_handler = catch_fpe; \
sigemptyset (&act.sa_mask); \
act.sa_flags = 0; \
- sigaction (SIGFPE, &act, NULL); \
+ __sigaction (SIGFPE, &act, NULL); \
} \
while (0)