0.8.18.14:
[sbcl.git] / src / runtime / sparc-sunos-os.c
index 76459f4..9414b06 100644 (file)
@@ -17,6 +17,7 @@
 #include <stdio.h>
 #include <sys/param.h>
 #include <sys/file.h>
+#include "sbcl.h"
 #include "./signal.h"
 #include "os.h"
 #include "arch.h"
 #include "interrupt.h"
 #include "interr.h"
 #include "lispregs.h"
-#include "sbcl.h"
 #include <sys/socket.h>
 #include <sys/utsname.h>
 
 #include <sys/types.h>
 #include <signal.h>
-/* #include <sys/sysinfo.h> */
 #include <sys/time.h>
 #include <sys/stat.h>
 #include <unistd.h>
 
 #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   *
@@ -63,23 +69,29 @@ os_context_register_addr(os_context_t *context, int offset)
 os_context_register_t *
 os_context_pc_addr(os_context_t *context)
 {
-  return &(context->uc_mcontext.gregs[REG_PC]);
+    return &(context->uc_mcontext.gregs[REG_PC]);
 }
 
 os_context_register_t *
 os_context_npc_addr(os_context_t *context)
 {
-  return &(context->uc_mcontext.gregs[REG_nPC]);
+    return &(context->uc_mcontext.gregs[REG_nPC]);
 }
 
 sigset_t *
 os_context_sigmask_addr(os_context_t *context)
 {
-  return &(context->uc_sigmask);
+    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)
 {
-  /* FIXME.  There's a bit of stuff in the CMUCL version. It may or
-     may not be needed */
+    /* see sparc-assem.S */
+    sparc_flush_icache(address, length);
 }