|
Lines 271-279
Link Here
|
| 271 |
|
271 |
|
| 272 |
/* Initialise the global signal action structure: */ |
272 |
/* Initialise the global signal action structure: */ |
| 273 |
sigfillset(&act.sa_mask); |
273 |
sigfillset(&act.sa_mask); |
| 274 |
act.sa_handler = (void (*) ()) _thread_sig_handler; |
274 |
act.sa_handler = (void (*) ()) _thread_sig_handler; |
| 275 |
act.sa_flags = SA_SIGINFO | SA_ONSTACK | SA_RESTART; |
275 |
act.sa_flags = SA_SIGINFO | SA_ONSTACK; |
| 276 |
|
276 |
|
| 277 |
/* Clear pending signals for the process: */ |
277 |
/* Clear pending signals for the process: */ |
| 278 |
sigemptyset(&_process_sigpending); |
278 |
sigemptyset(&_process_sigpending); |
| 279 |
|
279 |
|