signal: Don't use custom restorer.
* lib/linux/signal.c (signal): Don't use custom restorer.
This commit is contained in:
parent
02fdead244
commit
3e6306a5ce
|
@ -44,12 +44,12 @@ signal (int signum, sighandler_t action)
|
|||
unsigned short itembitcount;
|
||||
|
||||
setup_action.sa_handler = action;
|
||||
setup_action.sa_restorer = _restorer_for_siginfo;
|
||||
/*setup_action.sa_restorer = _restorer_for_siginfo;*/
|
||||
bitindex = signum - 1;
|
||||
itembitcount = 8 * sizeof(setup_action.sa_mask.items[0]);
|
||||
setup_action.sa_mask.items[bitindex / itembitcount] = 1UL << (bitindex % itembitcount);
|
||||
old.sa_handler = SIG_DFL;
|
||||
setup_action.sa_flags = SA_RESTORER | SA_RESTART | SA_SIGINFO;
|
||||
setup_action.sa_flags = SA_RESTART | SA_SIGINFO;
|
||||
int r = _sys_call4 (SYS_rt_sigaction, signum, &setup_action, &old, sizeof (sigset_t));
|
||||
if (r)
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue