Re: [dpdk-dev] [PATCH v2 1/2] eal: move OS common debug functions to single file

2020-06-23 Thread Thomas Monjalon
08/06/2020 10:32, tal...@mellanox.com: > From: Tal Shnaiderman > > Move common functions between Unix and Windows to eal_common_debug.c. [...] > --- /dev/null > +++ b/lib/librte_eal/common/eal_common_debug.c > @@ -0,0 +1,58 @@ > +/* SPDX-License-Identifier: BSD-3-Clause > + * Copyright(c) 2020 Me

[dpdk-dev] [PATCH v2 1/2] eal: move OS common debug functions to single file

2020-06-08 Thread talshn
From: Tal Shnaiderman Move common functions between Unix and Windows to eal_common_debug.c. Those functions are rte_exit, __rte_panic and rte_dump_registers which has the same implementation on Unix and Windows. Signed-off-by: Tal Shnaiderman --- lib/librte_eal/common/eal_common_debug.c | 58