Add priority argument to thread sys_thread_new.Patch from floriZ but slightly modfied

This commit is contained in:
jani
2003-03-19 15:27:56 +00:00
parent 0846206bc0
commit 84697ce713
5 changed files with 19 additions and 7 deletions

View File

@@ -120,10 +120,10 @@ If threads are supported by the underlying operating system and if
such functionality is needed in lwIP, the following function will have
to be implemented as well:
- sys_thread_t sys_thread_new(void (* thread)(void *arg), void *arg)
- sys_thread_t sys_thread_new(void (* thread)(void *arg), void *arg, int prio)
Starts a new thread that will begin its execution in the function
"thread()". The "arg" argument will be passed as an argument to the
Starts a new thread with priority "prio" that will begin its execution in the
function "thread()". The "arg" argument will be passed as an argument to the
thread() function. The id of the new thread is returned.
- sys_prot_t sys_arch_protect(void)