On Thu, 8 Oct 2020 21:00:44 +0530 rohit....@nxp.com wrote: > +static void > +signal_handler(int signal) > +{ > + if (signal == SIGINT) > + rte_eal_cleanup();
NAK Call rte_eal_cleanup in signal handler is not safe. Need to set a flag and handle it in main code.