summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/e1
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-21 16:13:48 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-21 16:13:48 +0000
commit1f80b7444c4ecf5cf391766471c246ebd57399a7 (patch)
tree40fdf0beee667b142d01763091f76d6b8cb09a48 /libc/sysdeps/linux/e1
parent364360712cae7401a502e3803562f87ef98d27e8 (diff)
Remove other __sigprocmask occurences, even if unused, remove unsed file
Diffstat (limited to 'libc/sysdeps/linux/e1')
-rw-r--r--libc/sysdeps/linux/e1/setjmp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/e1/setjmp.c b/libc/sysdeps/linux/e1/setjmp.c
index 502e89b22..750c4e08e 100644
--- a/libc/sysdeps/linux/e1/setjmp.c
+++ b/libc/sysdeps/linux/e1/setjmp.c
@@ -7,6 +7,8 @@
#include <stdio.h>
#include <signal.h>
+libc_hidden_proto(sigprocmask)
+
int setjmp( jmp_buf state)
{
asm volatile( "mov %0, G3\n\t"
@@ -32,7 +34,7 @@ int sigsetjmp( sigjmp_buf state , int savesigs)
if(savesigs) {
state->__mask_was_saved = 1;
/* how arg in <sigprocmask> is not significant */
- __sigprocmask(SIG_SETMASK, NULL, &state->__saved_mask);
+ sigprocmask(SIG_SETMASK, NULL, &state->__saved_mask);
} else
state->__mask_was_saved = 0;