1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-02 16:01:20 +03:00
2004-04-08  Ulrich Drepper  <drepper@redhat.com>

	* po/nl.po: Update from translation team.
This commit is contained in:
Ulrich Drepper
2004-04-08 16:12:20 +00:00
parent e6eb894e8d
commit adcd516432
4 changed files with 184 additions and 154 deletions

View File

@@ -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.

View File

@@ -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);