From cf3175531d237ca749a4e1bd0d8d5b6cc7c4dd87 Mon Sep 17 00:00:00 2001 From: jilles Date: Sun, 30 Jun 2013 20:51:15 +0000 Subject: libc: Access _sigintr more efficiently. The variable _sigintr is not exported via the version script; therefore, tell the compiler that no indirection (to allow interposition) is needed. --- lib/libc/gen/siginterrupt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/gen/siginterrupt.c') diff --git a/lib/libc/gen/siginterrupt.c b/lib/libc/gen/siginterrupt.c index dde474c..fde33ca 100644 --- a/lib/libc/gen/siginterrupt.c +++ b/lib/libc/gen/siginterrupt.c @@ -46,7 +46,7 @@ int siginterrupt(sig, flag) int sig, flag; { - extern sigset_t _sigintr; + extern sigset_t _sigintr __hidden; struct sigaction sa; int ret; -- cgit v1.1