diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-11-19 17:09:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-11 17:41:56 +0200 |
commit | 4eb62b5230c29e2f6ab17352439521083846c259 (patch) | |
tree | 25931537d2d2797375e7a747129dcd1f7e0ef597 /nix/nix-daemon/nix-daemon.cc | |
parent | f160a30d5612506de41a8206a57eccee1cd85fb7 (diff) | |
download | guix-4eb62b5230c29e2f6ab17352439521083846c259.tar.gz |
nix-daemon: Call exit(), not _exit()
This was preventing destructors from running. In particular, it was preventing the deletion of the temproot file for each worker process. It may also have been responsible for the excessive WAL growth on Hydra (due to the SQLite database not being closed properly). Apparently broken by accident in 8e9140cfdef9dbd1eb61e4c75c91d452ab5e4a74.
Diffstat (limited to 'nix/nix-daemon/nix-daemon.cc')
-rw-r--r-- | nix/nix-daemon/nix-daemon.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/nix-daemon/nix-daemon.cc b/nix/nix-daemon/nix-daemon.cc index 2fa3632dfe..e42d602a3a 100644 --- a/nix/nix-daemon/nix-daemon.cc +++ b/nix/nix-daemon/nix-daemon.cc @@ -924,8 +924,8 @@ static void daemonLoop() to.fd = remote; processConnection(trusted); - _exit(0); - }, "unexpected Nix daemon error: "); + exit(0); + }, false, "unexpected Nix daemon error: ", true); } catch (Interrupted & e) { throw; |