summaryrefslogtreecommitdiff
path: root/nptl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-12-28 01:41:24 +0000
committerUlrich Drepper <drepper@redhat.com>2004-12-28 01:41:24 +0000
commita71c152cfce9040addc1474936c2b96382ab9169 (patch)
treedd41a884408daa88ca6c28f1757e50995bfcd734 /nptl
parentab4b89fe8a6b41b6317e18e0d14c81103f3d98e1 (diff)
Update.
2004-12-27 Ulrich Drepper <drepper@redhat.com> * include/signal.h: Define __sigemptyset.
Diffstat (limited to 'nptl')
-rw-r--r--nptl/ChangeLog4
-rw-r--r--nptl/init.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index ddb4dab457..19ce0d7e1e 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,7 @@
+2004-12-27 Ulrich Drepper <drepper@redhat.com>
+
+ * init.c (__pthread_initialize_minimal_internal): Use __sigemptyset.
+
2004-12-21 Jakub Jelinek <jakub@redhat.com>
* sysdeps/i386/tls.h (CALL_THREAD_FCT): Maintain 16 byte alignment of
diff --git a/nptl/init.c b/nptl/init.c
index 3751e6be77..86745af8d1 100644
--- a/nptl/init.c
+++ b/nptl/init.c
@@ -262,7 +262,7 @@ __pthread_initialize_minimal_internal (void)
struct sigaction sa;
sa.sa_sigaction = sigcancel_handler;
sa.sa_flags = SA_SIGINFO;
- sigemptyset (&sa.sa_mask);
+ __sigemptyset (&sa.sa_mask);
(void) __libc_sigaction (SIGCANCEL, &sa, NULL);