@@ -12,9 +12,9 @@
#include <example_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
#include <strings.h>
#include <errno.h>
#include <stdio.h>
@@ -20,7 +20,7 @@
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
@@ -24,7 +24,7 @@
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/icmp.h>
@@ -10,9 +10,9 @@
#include <signal.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
#define POOL_NUM_PKT 8192
#define POOL_SEG_LEN 1856
@@ -14,11 +14,11 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
#include <odp/helper/tcp.h>
+#include <odp/helper/threads.h>
#include "odp_l3fwd_db.h"
#include "odp_l3fwd_lpm.h"
@@ -13,9 +13,9 @@
#include <example_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
/** @def MAX_WORKERS
* @brief Maximum number of worker threads
@@ -11,9 +11,9 @@
#include <inttypes.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
/** Maximum number of worker threads */
#define MAX_WORKERS 32
@@ -4,10 +4,11 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
+#include <inttypes.h>
+
#include <odp_api.h>
#include <example_debug.h>
-#include <odp/helper/linux.h>
-#include <inttypes.h>
+#include <odp/helper/threads.h>
#define MAX_WORKERS 32
#define ITERATION_NUM 2048
@@ -14,7 +14,7 @@
#include <odp_api.h>
/* ODP helper for Linux apps */
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* GNU lib C */
#include <getopt.h>
@@ -14,7 +14,6 @@ AM_LDFLAGS += -version-number '$(ODPHELPER_LIBSO_VERSION)'
helperincludedir = $(includedir)/odp/helper/
helperinclude_HEADERS = \
- $(srcdir)/include/odp/helper/linux.h \
$(srcdir)/include/odp/helper/chksum.h\
$(srcdir)/include/odp/helper/eth.h\
$(srcdir)/include/odp/helper/icmp.h\
@@ -23,6 +22,7 @@ helperinclude_HEADERS = \
$(srcdir)/include/odp/helper/strong_types.h\
$(srcdir)/include/odp/helper/tcp.h\
$(srcdir)/include/odp/helper/table.h\
+ $(srcdir)/include/odp/helper/threads.h \
$(srcdir)/include/odp/helper/udp.h
noinst_HEADERS = \
@@ -37,10 +37,10 @@ __LIB__libodphelper_linux_la_SOURCES = \
eth.c \
ip.c \
chksum.c \
- linux.c \
hashtable.c \
lineartable.c \
cuckootable.c \
- iplookuptable.c
+ iplookuptable.c \
+ threads.c
lib_LTLIBRARIES = $(LIB)/libodphelper-linux.la
similarity index 99%
rename from helper/include/odp/helper/linux.h
rename to helper/include/odp/helper/threads.h
@@ -22,8 +22,6 @@
extern "C" {
#endif
-#include <odp_api.h>
-
#include <pthread.h>
#include <getopt.h>
#include <sys/types.h>
@@ -15,7 +15,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define NUMBER_WORKERS 16
@@ -6,7 +6,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define NUMBER_WORKERS 16 /* 0 = max */
@@ -6,7 +6,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define NUMBER_WORKERS 16
static void *worker_fn(void *arg TEST_UNUSED)
similarity index 99%
rename from helper/linux.c
rename to helper/threads.c
@@ -20,7 +20,7 @@
#include <stdbool.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include "odph_debug.h"
static struct {
@@ -7,7 +7,7 @@
#include <string.h>
#include <odp_api.h>
#include <odp_cunit_common.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* Globals */
static odph_odpthread_t thread_tbl[MAX_WORKERS];
static odp_instance_t instance;
@@ -1,6 +1,6 @@
#include <cstdio>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
int main(int argc ODP_UNUSED, const char *argv[] ODP_UNUSED)
{
@@ -17,7 +17,7 @@
#include <sys/resource.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define app_err(fmt, ...) \
fprintf(stderr, "%s:%d:%s(): Error: " fmt, __FILE__, \
@@ -25,7 +25,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
@@ -25,7 +25,7 @@
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <getopt.h>
#include <stdlib.h>
@@ -20,7 +20,7 @@
#include <odp_api.h>
/* ODP helper for Linux apps */
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* GNU lib C */
#include <getopt.h>
@@ -20,7 +20,7 @@
#include <odp_api.h>
/* ODP helper for Linux apps */
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* Needs librt*/
#include <time.h>
@@ -15,7 +15,7 @@
#include <time.h>
#include <odp.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include "odp_cunit_common.h"
#include "test_debug.h"
#include "timer.h"
@@ -10,7 +10,7 @@
#include <signal.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
@@ -17,7 +17,7 @@
#include <example_debug.h>
#include <odp.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
@@ -18,7 +18,7 @@
#include <unistd.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp_packet_io_ring_internal.h>
#include <test_debug.h>
#include <odp_cunit_common.h>
Remove the OS specific Linux filename and use the name of the generic apis it contains which is for odp_threads Signed-off-by: Mike Holmes <mike.holmes@linaro.org> --- example/classifier/odp_classifier.c | 2 +- example/generator/odp_generator.c | 2 +- example/ipsec/odp_ipsec.c | 2 +- example/l2fwd_simple/odp_l2fwd_simple.c | 2 +- example/l3fwd/odp_l3fwd.c | 2 +- example/packet/odp_pktio.c | 2 +- example/switch/odp_switch.c | 2 +- example/time/time_global_test.c | 5 +++-- example/timer/odp_timer_test.c | 2 +- helper/Makefile.am | 6 +++--- helper/include/odp/helper/{linux.h => threads.h} | 2 -- helper/test/odpthreads.c | 2 +- helper/test/process.c | 2 +- helper/test/thread.c | 2 +- helper/{linux.c => threads.c} | 2 +- test/common_plat/common/odp_cunit_common.c | 2 +- test/common_plat/miscellaneous/odp_api_from_cpp.cpp | 2 +- test/common_plat/performance/odp_crypto.c | 2 +- test/common_plat/performance/odp_l2fwd.c | 2 +- test/common_plat/performance/odp_pktio_perf.c | 2 +- test/common_plat/performance/odp_sched_latency.c | 2 +- test/common_plat/performance/odp_scheduling.c | 2 +- test/common_plat/validation/api/timer/timer.c | 2 +- test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c | 2 +- test/linux-generic/pktio_ipc/ipc_common.h | 2 +- test/linux-generic/ring/ring_stress.c | 2 +- 26 files changed, 29 insertions(+), 30 deletions(-) rename helper/include/odp/helper/{linux.h => threads.h} (99%) rename helper/{linux.c => threads.c} (99%) -- 2.9.3