02/04/2019 05:54, Anand Rawat: > Add windows specific logic for eal.c, eal_lcore.c, > eal_debug.c and eal_thread.c. Updated header files to > contain suitable function declaractions. > > Signed-off-by: Anand Rawat <anand.ra...@intel.com> > Signed-off-by: Pallavi Kadam <pallavi.ka...@intel.com> > Reviewed-by: Jeff Shaw <jeffrey.b.s...@intel.com> > Reviewed-by: Ranjit Menon <ranjit.me...@intel.com> > --- [...] > + /* > + * create communication pipes between master thread > + * and children > + */ > + if (_pipe(lcore_config[i].pipe_master2slave, > + sizeof(char), _O_BINARY) < 0) > + rte_panic("Cannot create pipe\n");
rte_panic should be used only in applications, not in libraries. The application can do something in case of DPDK failure. Please remove all calls to rte_panic() during next weeks, thanks.