0.8.5.29:
[sbcl.git] / src / runtime / sparc-sunos-os.c
index 6b8364d..72a2931 100644 (file)
 
 #include "validate.h"
 
-#if defined GENCGC              /* unlikely ... */
-#include "gencgc.h"
+#ifdef LISP_FEATURE_SB_THREAD
+#error "Define threading support functions"
+#else
+int arch_os_thread_init(struct thread *thread) {
+    return 1;                  /* success */
+}
+int arch_os_thread_cleanup(struct thread *thread) {
+    return 1;                  /* success */
+}
 #endif
 
 os_context_register_t   *
@@ -77,6 +84,12 @@ os_context_sigmask_addr(os_context_t *context)
     return &(context->uc_sigmask);
 }
 
+unsigned long
+os_context_fp_control(os_context_t *context)
+{
+    return (context->uc_mcontext.fpregs.fpu_fsr);
+}
+
 void os_flush_icache(os_vm_address_t address, os_vm_size_t length)
 {
     /* see sparc-assem.S */