mirror of
https://github.com/swaywm/sway.git
synced 2026-04-21 06:46:22 -04:00
Use pthread_atfork() to restore signals and NOFILE limit
This ensures these functions are always called (even when a library such as wlroots or libc perform the fork) and removes the need to manually call them.
This commit is contained in:
parent
86ff19fade
commit
0e19d85d37
7 changed files with 23 additions and 28 deletions
|
|
@ -51,8 +51,6 @@ struct cmd_results *cmd_exec_process(int argc, char **argv) {
|
|||
// Fork process
|
||||
pid_t child = fork();
|
||||
if (child == 0) {
|
||||
restore_nofile_limit();
|
||||
restore_signals();
|
||||
setsid();
|
||||
|
||||
if (ctx) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue