X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fx86-linux-os.h;h=f2a39f9c19acf0aac592ecfc9e2defd97dfe0f9b;hb=7be8d1462a207bda809cd7553c5d76c6ebc4dda2;hp=a2332230c35f3392bd4935554ee7515852e4fc03;hpb=e365f2f7a9c66d307b48fee70778f4eaa84bdcc0;p=sbcl.git diff --git a/src/runtime/x86-linux-os.h b/src/runtime/x86-linux-os.h index a233223..f2a39f9 100644 --- a/src/runtime/x86-linux-os.h +++ b/src/runtime/x86-linux-os.h @@ -2,15 +2,15 @@ #define _X86_LINUX_OS_H typedef struct ucontext os_context_t; -typedef long os_context_register_t; +typedef greg_t os_context_register_t; -static inline os_context_t *arch_os_get_context(void **void_context) { +static inline os_context_t *arch_os_get_context(void **void_context) +{ return (os_context_t *) *void_context; } -extern struct thread *arch_os_get_current_thread(); unsigned long os_context_fp_control(os_context_t *context); +#define RESTORE_FP_CONTROL_FROM_CONTEXT void os_restore_fp_control(os_context_t *context); -int arch_os_thread_init(struct thread *thread); #endif /* _X86_LINUX_OS_H */