From 1e14a27ee842838d501331979d04a6026f8d2c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 17 Mar 2004 15:27:19 +0000 Subject: [PATCH] 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 --- headers/private/kernel/thread.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/headers/private/kernel/thread.h b/headers/private/kernel/thread.h index eb4ad0c85e..de56a14275 100755 --- a/headers/private/kernel/thread.h +++ b/headers/private/kernel/thread.h @@ -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