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

@@ -165,7 +165,7 @@ tcpip_init(void (* initfunc)(void *), void *arg)
tcpip_init_done = initfunc;
tcpip_init_done_arg = arg;
mbox = sys_mbox_new();
sys_thread_new(tcpip_thread, NULL);
sys_thread_new(tcpip_thread, NULL, TCPIP_THREAD_PRIO);
}
/*-----------------------------------------------------------------------------------*/