[dpdk-dev] [PATCH 1/3] eal: fix keep alive header for C++

2016-02-15 Thread Remy Horton
On 05/02/2016 17:06, Thomas Monjalon wrote: > When built in a C++ application, the keepalive include fails: > > rte_keepalive.h:142:41: error: ?ALIVE? was not declared in this scope >keepcfg->state_flags[rte_lcore_id()] = ALIVE; > ^ > > Fixes: 75583b0d

[dpdk-dev] [PATCH 1/3] eal: fix keep alive header for C++

2016-02-05 Thread Thomas Monjalon
When built in a C++ application, the keepalive include fails: rte_keepalive.h:142:41: error: ?ALIVE? was not declared in this scope keepcfg->state_flags[rte_lcore_id()] = ALIVE; ^ Fixes: 75583b0d1efd ("eal: add keep alive monitoring") Signed-off-by: Tho