1
0
Fork 0
forked from len0rd/rockbox

remove_tread() -> remove_thread()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4788 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-06-22 07:17:17 +00:00
parent e61f6fa599
commit cac729ef82
2 changed files with 2 additions and 2 deletions

View file

@ -171,7 +171,7 @@ int create_thread(void* function, void* stack, int stack_size, char *name)
regs->pr = function;
wake_up_thread();
return num_threads++; /* return the current ID, e.g for remove_tread() */
return num_threads++; /* return the current ID, e.g for remove_thread() */
}
/*---------------------------------------------------------------------------