diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-12-10 14:24:58 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-12-10 14:24:58 +0100 |
commit | ed6ac5db8474edabe83f0cdcbe7f258f0859ea41 (patch) | |
tree | f19864ccc41cece2bdc191e49735e9f3dc1bdd72 /src/tools/cbr/cbr_client.c | |
parent | 7c2191370c1c4b891df4d1016baeb220ce1d8dca (diff) | |
parent | 7a8f55bdb4498c927b6f192b83868138b32cce72 (diff) | |
download | ouroboros-ed6ac5db8474edabe83f0cdcbe7f258f0859ea41.tar.gz ouroboros-ed6ac5db8474edabe83f0cdcbe7f258f0859ea41.zip |
Merged in dstaesse/ouroboros/be-cbr (pull request #322)
tools: Shut down cbr gracefully
Diffstat (limited to 'src/tools/cbr/cbr_client.c')
-rw-r--r-- | src/tools/cbr/cbr_client.c | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/src/tools/cbr/cbr_client.c b/src/tools/cbr/cbr_client.c index 58198b86..8940c9d9 100644 --- a/src/tools/cbr/cbr_client.c +++ b/src/tools/cbr/cbr_client.c @@ -24,6 +24,25 @@ #include <ouroboros/dev.h> #include <ouroboros/time_utils.h> +#include <signal.h> + +volatile bool stop; + +static void shutdown_client(int signo, siginfo_t * info, void * c) +{ + (void) info; + (void) c; + + switch(signo) { + case SIGINT: + case SIGTERM: + case SIGHUP: + stop = true; + default: + return; + } +} + static void busy_wait_until(const struct timespec * deadline) { struct timespec now; @@ -42,9 +61,10 @@ int client_main(char * server, bool flood, bool sleep) { + struct sigaction sig_act; + int fd = 0; int result = 0; - bool stop = false; char buf[size]; long seqnr = 0; long gap = size * 8.0 * (BILLION / (double) rate); @@ -54,6 +74,20 @@ int client_main(char * server, struct timespec intv = {(gap / BILLION), gap % BILLION}; int ms; + stop = false; + + memset(&sig_act, 0, sizeof sig_act); + sig_act.sa_sigaction = &shutdown_client; + sig_act.sa_flags = 0; + + if (sigaction(SIGINT, &sig_act, NULL) || + sigaction(SIGTERM, &sig_act, NULL) || + sigaction(SIGHUP, &sig_act, NULL) || + sigaction(SIGPIPE, &sig_act, NULL)) { + printf("Failed to install sighandler.\n"); + return -1; + } + printf("Client started, duration %d, rate %lu b/s, size %d B.\n", duration, rate, size); |