core/thread: remove thread_create_arg from header

It's just a leftover from #856
This commit is contained in:
Ludwig Ortmann 2014-07-09 18:01:31 +02:00
parent 17f2eb80b8
commit 5ebdf6e745

View File

@ -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
*