Add :application-type parameter for save-lisp-and-die on Windows.
[sbcl.git] / src / runtime / x86-linux-os.h
index 90b34c0..f2a39f9 100644 (file)
@@ -2,13 +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;
 }
 
 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);
 
 #endif /* _X86_LINUX_OS_H */