diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-26 05:51:53 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-26 05:54:22 +0200 |
commit | 1de2aaa4001eb2d0ddfc4f86ab2c2a3eebdc9841 (patch) | |
tree | 85b0290fd51c220a9a621e98c0b88d92ce776e33 /src/worker_main.c | |
parent | worker: capture process output (diff) | |
download | cimple-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 '')
-rw-r--r-- | src/worker_main.c | 1 |
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> |