Changed prototype for thread_init(), renamed thread_init_percpu() to thread_per_cpu_init().

Removed thread_kill_thread_nowait(), removed prototype for non-existing thread_kill_thread().


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7009 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-03-17 15:27:19 +00:00
parent 0cec1c047b
commit 1e14a27ee8

View File

@ -33,11 +33,9 @@ void thread_atkernel_entry(void);
// called when the thread enters the kernel on behalf of the thread
void thread_atkernel_exit(void);
int thread_init(kernel_args *ka);
int thread_init_percpu(int cpu_num);
status_t thread_init(kernel_args *ka);
status_t thread_per_cpu_init(int32 cpu_num);
void thread_exit(void);
int thread_kill_thread(thread_id id);
int thread_kill_thread_nowait(thread_id id);
#define thread_get_current_thread arch_thread_get_current_thread