aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>2017-10-22 14:41:56 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-01-18 22:07:23 +0300
commit0c8009e48f6bcb254ba06a85e9226d1a0459a36e (patch)
tree0fd36860ebc913244d21cc1aa5a94db4d9391d87 /helper
parentd70c5f1ce3e98c3a7409312ccfdc3ce0087a2d49 (diff)
linux-gen, include: switch std_clib.h to api+abi
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'helper')
-rw-r--r--helper/test/linux/process.c2
-rw-r--r--helper/test/linux/pthread.c2
-rw-r--r--helper/threads.c1
3 files changed, 5 insertions, 0 deletions
diff --git a/helper/test/linux/process.c b/helper/test/linux/process.c
index 12504d01b..3ed2032b0 100644
--- a/helper/test/linux/process.c
+++ b/helper/test/linux/process.c
@@ -11,6 +11,8 @@
#include <odp/helper/linux/pthread.h>
#include <odp/helper/linux/process.h>
+#include <string.h>
+
#define NUMBER_WORKERS 16 /* 0 = max */
static void *worker_fn(void *arg ODPH_UNUSED)
diff --git a/helper/test/linux/pthread.c b/helper/test/linux/pthread.c
index a50df027f..0863283d6 100644
--- a/helper/test/linux/pthread.c
+++ b/helper/test/linux/pthread.c
@@ -10,6 +10,8 @@
#include <odp_api.h>
#include <odp/helper/linux/pthread.h>
+#include <string.h>
+
#define NUMBER_WORKERS 16
static void *worker_fn(void *arg ODPH_UNUSED)
{
diff --git a/helper/threads.c b/helper/threads.c
index a83014d42..32a092825 100644
--- a/helper/threads.c
+++ b/helper/threads.c
@@ -10,6 +10,7 @@
#define _GNU_SOURCE
#endif
#include <sched.h>
+#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/prctl.h>