mirror of
https://review.haiku-os.org/haiku
synced 2025-01-19 13:01:29 +01:00
4f7b9506fd
This reverts commit 458e758f3792ef11ca26d6ff7e24600c88326e83. This reverts commit ce5eb94a82b1b377ef5909e65411e031f54ceb15. This reverts commit aac8d4c317ca11a9a6e194e2c668e8183ec23dd6. This reverts commit c70cba914aa79c01bbc2da38085936f589899c8c. This reverts commit 2ffbe7aaca8668c5a68ac7488459bace7a0700f2 This reverts commit c6e120e2d2f909d95f95839fa99fccf811fdb3c5.
78 lines
1.5 KiB
C
78 lines
1.5 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 sigaction;
|
|
|
|
|
|
struct iframe* x86_get_user_iframe(void);
|
|
struct iframe* x86_get_current_iframe(void);
|
|
struct iframe* x86_get_thread_user_iframe(Thread* thread);
|
|
|
|
phys_addr_t x86_next_page_directory(Thread* from, Thread* to);
|
|
void x86_initial_return_to_userland(Thread* thread, struct iframe* iframe);
|
|
|
|
void x86_restart_syscall(struct iframe* frame);
|
|
void x86_set_tls_context(Thread* thread);
|
|
|
|
|
|
static inline Thread*
|
|
arch_thread_get_current_thread(void)
|
|
{
|
|
addr_t addr;
|
|
__asm__("mov %%gs:0, %0" : "=r"(addr));
|
|
return (Thread*)addr;
|
|
}
|
|
|
|
|
|
#ifdef __x86_64__
|
|
|
|
|
|
static inline void
|
|
arch_thread_set_current_thread(Thread* t)
|
|
{
|
|
// Point GS segment base at thread architecture data.
|
|
t->arch_info.thread = t;
|
|
x86_write_msr(IA32_MSR_GS_BASE, (addr_t)&t->arch_info);
|
|
}
|
|
|
|
|
|
#else // __x86_64__
|
|
|
|
|
|
// override empty macro
|
|
#undef arch_syscall_64_bit_return_value
|
|
void arch_syscall_64_bit_return_value(void);
|
|
|
|
|
|
static inline void
|
|
arch_thread_set_current_thread(Thread* t)
|
|
{
|
|
asm volatile("mov %0, %%gs:0" : : "r" (t) : "memory");
|
|
}
|
|
|
|
|
|
#endif // __x86_64__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_ARCH_x86_THREAD_H */
|
|
|