aboutsummaryrefslogtreecommitdiff
path: root/test/common/odp_cunit_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/common/odp_cunit_common.h')
-rw-r--r--test/common/odp_cunit_common.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/common/odp_cunit_common.h b/test/common/odp_cunit_common.h
index 5959163d3..242747f0c 100644
--- a/test/common/odp_cunit_common.h
+++ b/test/common/odp_cunit_common.h
@@ -78,9 +78,11 @@ int odp_cunit_run(void);
*
* Thread arguments table (arg[]) can be set to NULL, when there are no arguments.
* When 'priv' is 0, the same argument pointer (arg[0]) is passed to all threads. Otherwise,
- * a pointer is passed (from arg[]) to each thread. Returns 0 on success.
+ * a pointer is passed (from arg[]) to each thread. When 'sync' is 1, thread
+ * creation is synchronized (odph_thread_common_param_t.sync). Returns 0 on success.
*/
-int odp_cunit_thread_create(int num, int func_ptr(void *arg), void *const arg[], int priv);
+int odp_cunit_thread_create(int num, int func_ptr(void *arg), void *const arg[],
+ int priv, int sync);
/* Wait for previously created threads to exit */
int odp_cunit_thread_join(int num);