diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-16 22:22:21 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:26 +0200 |
commit | 923a7a3173cd5fd3acd9f6b443ce062c026dea9e (patch) | |
tree | 2d91405499b94db739e2f697795edd9a76dd397c | |
parent | a2fdd604dfee7e38fa6823b389312051a5dbcfc6 (diff) |
signal.h: disable ssignal and gsignal
raise.c: only LT new provided gsignal, disable it
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | include/signal.h | 2 | ||||
-rw-r--r-- | libpthread/linuxthreads/sysdeps/unix/sysv/linux/raise.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/signal.h b/include/signal.h index 3c64fd5f3..5f566120f 100644 --- a/include/signal.h +++ b/include/signal.h @@ -156,7 +156,7 @@ extern int raise (int __sig) __THROW; libc_hidden_proto(raise) __END_NAMESPACE_STD -#ifdef __USE_SVID +#if 0 /*def __USE_SVID*/ /* SVID names for the same things. */ extern __sighandler_t ssignal (int __sig, __sighandler_t __handler) __THROW; diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/raise.c b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/raise.c index 61209cfaf..b8983cce8 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/raise.c +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/raise.c @@ -40,4 +40,3 @@ raise (sig) #endif } libc_hidden_def (raise) -weak_alias (raise, gsignal) |