Remove more disassembler bogosity
[sbcl.git] / src / runtime / arm-linux-os.h
blob0bd8f3cacb33d2cbf6084e3b331f49bd5e704858
1 #ifndef _ARM_LINUX_OS_H
2 #define _ARM_LINUX_OS_H
4 typedef struct ucontext os_context_t;
5 typedef long os_context_register_t;
7 static inline os_context_t *arch_os_get_context(void **void_context)
9 return (os_context_t *) *void_context;
12 unsigned long os_context_fp_control(os_context_t *context);
13 #define RESTORE_FP_CONTROL_FROM_CONTEXT
14 void os_restore_fp_control(os_context_t *context);
16 #endif /* _ARM_LINUX_OS_H */