From a539f68be561abf9c8a860d2f3ec6dbe92aeb138 Mon Sep 17 00:00:00 2001 From: shatty Date: Sun, 24 Oct 2004 09:08:37 +0000 Subject: [PATCH] remove static from non-ARCH_x86 thread function prototypes git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9474 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/arch/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/private/kernel/arch/thread.h b/headers/private/kernel/arch/thread.h index fca3e76931..59928c90a4 100644 --- a/headers/private/kernel/arch/thread.h +++ b/headers/private/kernel/arch/thread.h @@ -27,8 +27,8 @@ void arch_thread_switch_kstack_and_call(struct thread *t, addr_t new_kstack, voi // (those functions are "static inline" for x86 - since // "extern inline" doesn't work for "gcc -g"...) #ifndef ARCH_x86 -static struct thread *arch_thread_get_current_thread(void); -static void arch_thread_set_current_thread(struct thread *t); +struct thread *arch_thread_get_current_thread(void); +void arch_thread_set_current_thread(struct thread *t); #endif status_t arch_setup_signal_frame(struct thread *t, struct sigaction *sa, int sig, int sig_mask);