|
|
|
|
|
by mjevans
1123 days ago
|
|
It sounds like exit_signals() is being called too early, and based on the test case linked this might be a library issue rather than a code or kernel issue? Edit: Reading the article it's more clear this happens in kernel's: do_exit() {
...
exit_signals(tsk); /* sets PF_EXITING */
...
exit_files(tsk);
Would a better solution not be to exit_signals(tsk); later in do_exit() after all possible signal sources are exhausted? |
|