mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
* hurd/hurdsig.c (_hurdsig_init): Add assertion that no pending,
unblocked signals are set in the startup masks.
This commit is contained in:
parent
fc7af6d6a8
commit
159d483605
@ -1,7 +1,11 @@
|
|||||||
1998-11-11 Roland McGrath <roland@baalperazim.frob.com>
|
1998-11-11 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
|
* hurd/hurdsig.c (_hurdsig_init): Add assertion that no pending,
|
||||||
|
unblocked signals are set in the startup masks.
|
||||||
|
|
||||||
* hurd/hurdsig.c (_hurdsig_init): Take new args, INTARRAY and
|
* hurd/hurdsig.c (_hurdsig_init): Take new args, INTARRAY and
|
||||||
INTARRAYSIZE. Initialize main thread's sigstate from INIT_SIG* ints.
|
INTARRAYSIZE. Initialize main thread's sigstate from INIT_SIG* ints.
|
||||||
|
|
||||||
* hurd/hurd/signal.h: Update _hurdsig_init decl.
|
* hurd/hurd/signal.h: Update _hurdsig_init decl.
|
||||||
* hurd/hurdinit.c (_hurd_proc_init): Take new args, INTARRAY and
|
* hurd/hurdinit.c (_hurd_proc_init): Take new args, INTARRAY and
|
||||||
INTARRAYSIZE, pass them down to _hurdsig_init.
|
INTARRAYSIZE, pass them down to _hurdsig_init.
|
||||||
|
@ -1236,6 +1236,12 @@ _hurdsig_init (const int *intarray, size_t intarraysize)
|
|||||||
/* Receive exceptions on the signal port. */
|
/* Receive exceptions on the signal port. */
|
||||||
__task_set_special_port (__mach_task_self (),
|
__task_set_special_port (__mach_task_self (),
|
||||||
TASK_EXCEPTION_PORT, _hurd_msgport);
|
TASK_EXCEPTION_PORT, _hurd_msgport);
|
||||||
|
|
||||||
|
/* Sanity check. Any pending, unblocked signals should have been
|
||||||
|
taken by our predecessor incarnation (i.e. parent or pre-exec state)
|
||||||
|
before packing up our init ints. This assert is last (not above)
|
||||||
|
so that signal handling is all set up to handle the abort. */
|
||||||
|
assert ((ss->pending &~ ss->blocked) == 0);
|
||||||
}
|
}
|
||||||
/* XXXX */
|
/* XXXX */
|
||||||
/* Reauthenticate with the proc server. */
|
/* Reauthenticate with the proc server. */
|
||||||
|
Loading…
Reference in New Issue
Block a user