aboutsummaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2021-09-01 19:38:48 +0000
committerArne Juul <arnej@verizonmedia.com>2021-09-01 19:38:48 +0000
commit530c5ce338ad8f9cc13dbaae3911e8851303503c (patch)
tree06e54d17ddbc325cc34442a7d72df75afb6cc340 /fastos
parent0acb7dd4139d1846d30d32cd339a423e5e5bd8bb (diff)
skip stopping proxy process
* we never start ProcessStarter proxy process, so we don't need to stop it either.
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/unix_process.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/fastos/src/vespa/fastos/unix_process.cpp b/fastos/src/vespa/fastos/unix_process.cpp
index 8db3c714822..3dc9e0315e9 100644
--- a/fastos/src/vespa/fastos/unix_process.cpp
+++ b/fastos/src/vespa/fastos/unix_process.cpp
@@ -1374,11 +1374,6 @@ bool FastOS_UNIX_ProcessStarter::Start ()
void FastOS_UNIX_ProcessStarter::Stop ()
{
- // Ignore failure (if it already died of SIGINT, etc..)
- WriteInt(_mainSocket, CODE_EXIT, true);
-
- int result = -1;
- waitpid(_pid, &result, 0);
}
char ** FastOS_UNIX_ProcessStarter::ReceiveEnvironmentVariables ()