sys_thread_new(): name is a const char*

This commit is contained in:
goldsimon 2010-03-26 14:37:54 +00:00
parent 12d42c5801
commit e4ad203b0b
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ void sys_sem_signal(sys_sem_t *sem)
LWIP_ASSERT("Error releasing semaphore", ret != 0);
}
sys_thread_t sys_thread_new(char *name, lwip_thread_fn function, void *arg, int stacksize, int prio)
sys_thread_t sys_thread_new(const char *name, lwip_thread_fn function, void *arg, int stacksize, int prio)
{
struct threadlist *new_thread;
HANDLE h;