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

@@ -212,6 +212,6 @@ slipif_init(struct netif *netif)
if (!netif->state)
return ERR_IF;
sys_thread_new(slipif_loop, netif);
sys_thread_new(slipif_loop, netif, SLIPIF_THREAD_PRIO);
return ERR_OK;
}