aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/worker_main.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-08-26 05:51:53 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-08-26 05:54:22 +0200
commit1de2aaa4001eb2d0ddfc4f86ab2c2a3eebdc9841 (patch)
tree85b0290fd51c220a9a621e98c0b88d92ce776e33 /src/worker_main.c
parentworker: capture process output (diff)
downloadcimple-1de2aaa4001eb2d0ddfc4f86ab2c2a3eebdc9841.tar.gz
cimple-1de2aaa4001eb2d0ddfc4f86ab2c2a3eebdc9841.zip
worker: allow graceful shutdowns
Well, maybe "graceful" is a strong word, but now you _can_ do ./server & ./worker & ./client ci_run URL REV && kill "$( pidof worker )" and the worker will wait for the CI run to complete.
Diffstat (limited to 'src/worker_main.c')
-rw-r--r--src/worker_main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/worker_main.c b/src/worker_main.c
index d88071d..b5ccd51 100644
--- a/src/worker_main.c
+++ b/src/worker_main.c
@@ -1,4 +1,5 @@
#include "const.h"
+#include "signal.h"
#include "worker.h"
#include <getopt.h>