mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-02 01:40:13 -05:00
slave: restore signals before calling exec()
This commit is contained in:
parent
d26c67e589
commit
61dfa1365e
2 changed files with 14 additions and 1 deletions
1
main.c
1
main.c
|
|
@ -205,6 +205,7 @@ main(int argc, char *const *argv)
|
|||
if (as_server && (server = server_init(&conf, fdm, wayl)) == NULL)
|
||||
goto out;
|
||||
|
||||
/* Remember to restore signals in slave */
|
||||
const struct sigaction sa = {.sa_handler = &sig_handler};
|
||||
if (sigaction(SIGINT, &sa, NULL) < 0 || sigaction(SIGTERM, &sa, NULL) < 0) {
|
||||
LOG_ERRNO("failed to register signal handlers");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue