From 5ebdf6e7452c9fc47c96359665d1b763fe7ba2d6 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Wed, 9 Jul 2014 18:01:31 +0200 Subject: [PATCH] core/thread: remove thread_create_arg from header It's just a leftover from #856 --- core/include/thread.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/include/thread.h b/core/include/thread.h index 22cd3dd5bc..17bdefb5f7 100644 --- a/core/include/thread.h +++ b/core/include/thread.h @@ -80,14 +80,6 @@ int thread_create(char *stack, void *(*function)(void *arg), void *arg, const char *name); - -int thread_create_arg(char *stack, - int stacksize, - char priority, - int flags, - void *(*function)(void *arg), - void *arg, - const char *name); /** * @brief Returns the status of a process *