From: Jerin Jacob Date: Tue, 4 Jul 2017 04:53:06 +0000 (+0530) Subject: app/testeventdev: add signal handler X-Git-Tag: spdx-start~2599 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2b0bf13c0b9803e265e3af00fb3ee40cdd761284;p=dpdk.git app/testeventdev: add signal handler Signed-off-by: Jerin Jacob Acked-by: Harry van Haaren --- diff --git a/app/test-eventdev/evt_main.c b/app/test-eventdev/evt_main.c index 27d0ae6830..56cd137ced 100644 --- a/app/test-eventdev/evt_main.c +++ b/app/test-eventdev/evt_main.c @@ -34,6 +34,7 @@ #include #include +#include #include #include #include @@ -44,6 +45,35 @@ struct evt_options opt; struct evt_test *test; +static void +signal_handler(int signum) +{ + if (signum == SIGINT || signum == SIGTERM) { + printf("\nSignal %d received, preparing to exit...\n", + signum); + /* request all lcores to exit from the main loop */ + *(int *)test->test_priv = true; + rte_wmb(); + + rte_eal_mp_wait_lcore(); + + if (test->ops.eventdev_destroy) + test->ops.eventdev_destroy(test, &opt); + + if (test->ops.ethdev_destroy) + test->ops.ethdev_destroy(test, &opt); + + if (test->ops.mempool_destroy) + test->ops.mempool_destroy(test, &opt); + + if (test->ops.test_destroy) + test->ops.test_destroy(test, &opt); + + /* exit with the expected status */ + signal(signum, SIG_DFL); + kill(getpid(), signum); + } +} static inline void evt_options_dump_all(struct evt_test *test, struct evt_options *opts) @@ -59,6 +89,9 @@ main(int argc, char **argv) uint8_t evdevs; int ret; + signal(SIGINT, signal_handler); + signal(SIGTERM, signal_handler); + ret = rte_eal_init(argc, argv); if (ret < 0) rte_panic("invalid EAL arguments\n");