From 1de038a7431f2da474559c124565cbbaa40cdff9 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 17 Nov 2019 22:44:49 +1100 Subject: [PATCH] Move the forked server into a new session and process group Fixes #3212 --- src/main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cc b/src/main.cc index 7af8c0cb..e0ce1935 100644 --- a/src/main.cc +++ b/src/main.cc @@ -543,6 +543,7 @@ pid_t fork_server_to_background() if (pid_t pid = fork()) return pid; + setsid(); if (fork()) // double fork to orphan the server exit(0);