aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2010-08-05 18:58:00 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2010-08-05 18:58:00 +0000
commita2ef0636b40df67fc7942c031636b5861a5da9d5 (patch)
tree8e9ad4169b36cf78d42fc2c477bf6f547ca09582 /sbin
parent005f438bf5108d8ffe0f418669e4ab1999c7c5fe (diff)
downloadsrc-a2ef0636b40df67fc7942c031636b5861a5da9d5.tar.gz
src-a2ef0636b40df67fc7942c031636b5861a5da9d5.zip
Reset signal handlers after fork().
MFC after: 1 month
Notes
Notes: svn path=/head/; revision=210880
Diffstat (limited to 'sbin')
-rw-r--r--sbin/hastd/primary.c3
-rw-r--r--sbin/hastd/secondary.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/sbin/hastd/primary.c b/sbin/hastd/primary.c
index ae7422044480..58e6cea7a2d7 100644
--- a/sbin/hastd/primary.c
+++ b/sbin/hastd/primary.c
@@ -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();
diff --git a/sbin/hastd/secondary.c b/sbin/hastd/secondary.c
index b4549b0010b4..a0fae637587a 100644
--- a/sbin/hastd/secondary.c
+++ b/sbin/hastd/secondary.c
@@ -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");