mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
* sysdeps/mach/hurd/sigwait.c (__sigwait): Use __sigandset,
__sigisemptyset. Don't use MASK uninitialized. * sysdeps/mach/hurd/sigprocmask.c (__sigprocmask): Use __sigorset. * hurd/hurdinit.c (_hurd_new_proc_init): Use __sigisemptyset. * hurd/hurdsig.c (_hurd_internal_post_signal): Use __sigismember, __sigdelset, __sigaddset, __sigorset.
This commit is contained in:
@ -166,7 +166,7 @@ _hurd_new_proc_init (char **argv,
|
||||
while. Eventually it probably makes most sense for the exec server to
|
||||
mask out EXEC_SIGTRAP so the debugged program is closer to not being
|
||||
able to tell it's being debugged. */
|
||||
if (_hurdsig_traced
|
||||
if (!__sigisemptyset (&_hurdsig_traced)
|
||||
#ifdef EXEC_SIGTRAP
|
||||
&& !(_hurd_exec_flags & EXEC_SIGTRAP)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user