Added prototype for _user_rename_thread().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7178 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-04-06 21:30:06 +00:00
parent 72191e36d5
commit 54327b01b3

View File

@ -54,6 +54,7 @@ thread_id spawn_kernel_thread_etc(thread_func, const char *name, int32 priority,
// used in syscalls.c // used in syscalls.c
status_t _user_set_thread_priority(thread_id thread, int32 newPriority); status_t _user_set_thread_priority(thread_id thread, int32 newPriority);
status_t _user_rename_thread(thread_id thread, const char *name);
status_t _user_suspend_thread(thread_id thread); status_t _user_suspend_thread(thread_id thread);
status_t _user_resume_thread(thread_id thread); status_t _user_resume_thread(thread_id thread);
thread_id _user_spawn_thread(thread_func func, const char *name, int32 priority, void *arg1, void *arg2); thread_id _user_spawn_thread(thread_func func, const char *name, int32 priority, void *arg1, void *arg2);