X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Falpha-linux-os.h;h=40a25eab47108d2af710d517156a664c569da84e;hb=HEAD;hp=c270f2ec34d595d1368af563a0b2717051515f8d;hpb=68fd2d2dd6f265669a8957accd8a33e62786a97e;p=sbcl.git diff --git a/src/runtime/alpha-linux-os.h b/src/runtime/alpha-linux-os.h index c270f2e..40a25ea 100644 --- a/src/runtime/alpha-linux-os.h +++ b/src/runtime/alpha-linux-os.h @@ -2,9 +2,13 @@ #define _ALPHA_LINUX_OS_H typedef struct ucontext os_context_t; +typedef long os_context_register_t; -static inline os_context_t *arch_os_get_context(void **void_context) { - return (os_context_t *) *void_context; +static inline os_context_t *arch_os_get_context(void **void_context) +{ + return (os_context_t *) *void_context; } +unsigned long os_context_fp_control(os_context_t *context); + #endif /* _ALPHA_LINUX_OS_H */