mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
Update.
2004-04-08 Ulrich Drepper <drepper@redhat.com> * po/nl.po: Update from translation team.
This commit is contained in:
parent
e6eb894e8d
commit
adcd516432
@ -1,3 +1,7 @@
|
||||
2004-04-08 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* po/nl.po: Update from translation team.
|
||||
|
||||
2004-04-04 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* math/test-tgmath.c: Declare compile_testl inly if we will define it.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-08 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* signals.c (pthread_sigmask): Don't ever block or mask
|
||||
__pthread_sig_debug.
|
||||
|
||||
2004-03-11 Steven Munroe <sjmunroe@us.ibm.com>
|
||||
|
||||
* sysdeps/powerpc/tls.h: Remove __powerpc64__ conditional.
|
||||
|
@ -34,9 +34,13 @@ int pthread_sigmask(int how, const sigset_t * newmask, sigset_t * oldmask)
|
||||
case SIG_SETMASK:
|
||||
sigaddset(&mask, __pthread_sig_restart);
|
||||
sigdelset(&mask, __pthread_sig_cancel);
|
||||
if (__pthread_sig_debug > 0)
|
||||
sigdelset(&mask, __pthread_sig_debug);
|
||||
break;
|
||||
case SIG_BLOCK:
|
||||
sigdelset(&mask, __pthread_sig_cancel);
|
||||
if (__pthread_sig_debug > 0)
|
||||
sigdelset(&mask, __pthread_sig_debug);
|
||||
break;
|
||||
case SIG_UNBLOCK:
|
||||
sigdelset(&mask, __pthread_sig_restart);
|
||||
|
Loading…
Reference in New Issue
Block a user