Details
Details
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Can you explain the semantic of CLEAR_SIGHAND, or provide a reference to the official doc?
sys/compat/linux/linux_fork.c | ||
---|---|---|
142 | This leaves f2 uninitialize if CLEAR_SIGHAND is not specified, no? |
Comment Actions
fixed, CLONE_CLEAR_SIGHAND is designed to reset all signal handlers of the child
not set to SIG_IGN to SIG_DFL.
sys/compat/linux/linux_fork.c | ||
---|---|---|
155 | Please do '|=' instead of '='. |
sys/compat/linux/linux_fork.c | ||
---|---|---|
142 | I would also moved the initialization of ff there, from the declaration block. |