diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 17:15:56 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 17:15:56 +0000 |
commit | cf29148c9a9387a4a173dd56c7ae0fdd4418fad7 (patch) | |
tree | 907ef74d9959ba62a6143ac403f2329eb5cd0c8f /libc/signal | |
parent | 1e950c61e51838680f35317669376e40d69bc6c6 (diff) |
signal ops: avoid calls through PLT for __sigXXX ops
linuxthreads.old/manager: pointless style fixes, no code changes
Diffstat (limited to 'libc/signal')
-rw-r--r-- | libc/signal/sigsetops.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/signal/sigsetops.c b/libc/signal/sigsetops.c index 6f1ae5c83..c47a87b0e 100644 --- a/libc/signal/sigsetops.c +++ b/libc/signal/sigsetops.c @@ -9,3 +9,9 @@ #endif #include <signal.h> + +/* Since we massaged signal.h into emitting non-inline function + * definitions, we need to finish PLT avoidance trick: */ +libc_hidden_def(__sigismember) +libc_hidden_def(__sigaddset) +libc_hidden_def(__sigdelset) |