From b82e7c1a88a0de520764814e39f34d8bd11de381 Mon Sep 17 00:00:00 2001 From: Cedric Roux <cedric.roux@eurecom.fr> Date: Fri, 17 Feb 2017 20:19:24 +0100 Subject: [PATCH] hotfix: forgot targets/COMMON/threads_t.h in a previous commit --- targets/COMMON/threads_t.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 targets/COMMON/threads_t.h diff --git a/targets/COMMON/threads_t.h b/targets/COMMON/threads_t.h new file mode 100644 index 0000000000..c9ba9fea1a --- /dev/null +++ b/targets/COMMON/threads_t.h @@ -0,0 +1,10 @@ +#ifndef _THREADS_T_H_ +#define _THREADS_T_H_ + +typedef struct threads_s { + int iq; + int odd; + int even; +} threads_t; + +#endif /* _THREADS_T_H_ */ -- GitLab