Reset signal handlers after fork().
MFC after: 1 month
This commit is contained in:
parent
005f438bf5
commit
a2ef0636b4
@ -761,6 +761,9 @@ hastd_primary(struct hast_resource *res)
|
||||
|
||||
setproctitle("%s (primary)", res->hr_name);
|
||||
|
||||
signal(SIGHUP, SIG_DFL);
|
||||
signal(SIGCHLD, SIG_DFL);
|
||||
|
||||
init_local(res);
|
||||
if (init_remote(res, NULL, NULL))
|
||||
sync_start();
|
||||
|
@ -340,6 +340,9 @@ hastd_secondary(struct hast_resource *res, struct nv *nvin)
|
||||
|
||||
setproctitle("%s (secondary)", res->hr_name);
|
||||
|
||||
signal(SIGHUP, SIG_DFL);
|
||||
signal(SIGCHLD, SIG_DFL);
|
||||
|
||||
/* Error in setting timeout is not critical, but why should it fail? */
|
||||
if (proto_timeout(res->hr_remotein, 0) < 0)
|
||||
pjdlog_errno(LOG_WARNING, "Unable to set connection timeout");
|
||||
|
Loading…
Reference in New Issue
Block a user