mirror of
https://review.haiku-os.org/haiku
synced 2025-01-29 17:54:54 +01:00
4535495d80
* The team and thread kernel structures have been renamed to Team and Thread respectively and moved into the new BKernel namespace. * Several (kernel add-on) sources have been converted from C to C++ since private kernel headers are included that are no longer C compatible. Changes after merging: * Fixed gcc 2 build (warnings mainly in the scary firewire bus manager). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40196 a95241bf-73f2-0310-859d-f6bbb57e9c96
56 lines
1.0 KiB
C
56 lines
1.0 KiB
C
/*
|
|
* Copyright 2002-2011, The Haiku Team. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Copyright 2002, Travis Geiselbrecht. All rights reserved.
|
|
* Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_x86_THREAD_H
|
|
#define _KERNEL_ARCH_x86_THREAD_H
|
|
|
|
|
|
#include <arch/cpu.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct iframe *i386_get_user_iframe(void);
|
|
struct iframe *i386_get_current_iframe(void);
|
|
struct iframe *i386_get_thread_user_iframe(Thread *thread);
|
|
|
|
uint32 x86_next_page_directory(Thread *from, Thread *to);
|
|
|
|
void x86_restart_syscall(struct iframe* frame);
|
|
|
|
void i386_return_from_signal();
|
|
void i386_end_return_from_signal();
|
|
|
|
// override empty macro
|
|
#undef arch_syscall_64_bit_return_value
|
|
void arch_syscall_64_bit_return_value(void);
|
|
|
|
|
|
static
|
|
inline Thread *
|
|
arch_thread_get_current_thread(void)
|
|
{
|
|
Thread *t;
|
|
read_dr3(t);
|
|
return t;
|
|
}
|
|
|
|
static inline void
|
|
arch_thread_set_current_thread(Thread *t)
|
|
{
|
|
write_dr3(t);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_ARCH_x86_THREAD_H */
|
|
|