aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/signal.h (unfollow)
Commit message (Collapse)Author
2023-05-13use -std=c17 -WpedanticEgor Tensin
2023-05-06get rid of __attribute__((constructor))Egor Tensin
Explicit is better than implicit.
2022-12-02add copyright noticesEgor Tensin
2022-08-28don't use the latest glibc featuresEgor Tensin
pthread_attr_setsigmask_np is only available since 2.32, which is too modern.
2022-08-28make compilers happierEgor Tensin
2022-08-26worker: allow graceful shutdownsEgor Tensin
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.