From ae7377cea8df3d2f2c122826f3df379786d719f3 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 14 Nov 2005 23:18:20 +0000 Subject: Hide internally used symbols, use weak_alias for raise/sigwait, as they could be in libpthread too --- libc/signal/sigwait.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libc/signal/sigwait.c') diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c index 9cd2b6d12..a3d43df19 100644 --- a/libc/signal/sigwait.c +++ b/libc/signal/sigwait.c @@ -22,7 +22,8 @@ #include #include -int sigwait (const sigset_t *set, int *sig) +#undef sigwait +int attribute_hidden __sigwait (const sigset_t *set, int *sig) { int ret = 1; if ((ret = sigwaitinfo(set, NULL)) != -1) { @@ -31,3 +32,6 @@ int sigwait (const sigset_t *set, int *sig) } return 1; } + +/* psm: keep this weak, because the one in libpthread.so could overwrite it */ +weak_alias(__sigwait, sigwait) -- cgit v1.2.3