diff options
author | bptato <nincsnevem662@gmail.com> | 2024-03-17 16:42:49 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-03-17 16:42:49 +0100 |
commit | d385d07b197cef65c2d2a800378de9152551e3e6 (patch) | |
tree | 8ce127e73de9d37a6e97410ec961e73b735f6a2c /src/main.nim | |
parent | c383c8a51f86f805c3a7e080b5ee32522076ba15 (diff) | |
download | chawan-d385d07b197cef65c2d2a800378de9152551e3e6.tar.gz |
Move SIGCHLD ignore call to forkserver
seems like it confuses popen()
Diffstat (limited to 'src/main.nim')
-rw-r--r-- | src/main.nim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.nim b/src/main.nim index 8a97a384..ea5a92dd 100644 --- a/src/main.nim +++ b/src/main.nim @@ -1,9 +1,5 @@ import version -when defined(posix): - from posix import signal, SIGCHLD, SIG_IGN - signal(SIGCHLD, SIG_IGN) - import server/forkserver let forks = newForkServer() |