X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fsparc-linux-os.c;h=45b076e9793d31b99645e7546dbb6681220629ad;hb=f0cb0cf9c0fe1b6fce5d10dbd34a0b7b249c4ae8;hp=8c685c298e364868dfad91d6e6f153611e50bc28;hpb=34dcb46f78a01d543756703d7ccdf3d999a134d0;p=sbcl.git diff --git a/src/runtime/sparc-linux-os.c b/src/runtime/sparc-linux-os.c index 8c685c2..45b076e 100644 --- a/src/runtime/sparc-linux-os.c +++ b/src/runtime/sparc-linux-os.c @@ -17,6 +17,7 @@ #include #include #include +#include "sbcl.h" #include "./signal.h" #include "os.h" #include "arch.h" @@ -24,7 +25,6 @@ #include "interrupt.h" #include "interr.h" #include "lispregs.h" -#include "sbcl.h" #include #include @@ -40,14 +40,11 @@ size_t os_vm_page_size; #ifdef LISP_FEATURE_SB_THREAD #error "Define threading support functions" #else -struct thread *arch_os_get_current_thread() { - return all_threads; -} int arch_os_thread_init(struct thread *thread) { - return 1; /* success */ + return 1; /* success */ } int arch_os_thread_cleanup(struct thread *thread) { - return 1; /* success */ + return 1; /* success */ } #endif @@ -55,16 +52,16 @@ os_context_register_t * os_context_register_addr(os_context_t *context, int offset) { if (offset == 0) { - static int zero; - zero = 0; - return &zero; + static int zero; + zero = 0; + return &zero; } else if (offset < 16) { - return &context->si_regs.u_regs[offset]; + return &context->si_regs.u_regs[offset]; } else if (offset < 32) { - int *sp = (int*) context->si_regs.u_regs[14]; /* Stack Pointer */ - return &(sp[offset-16]); + int *sp = (int*) context->si_regs.u_regs[14]; /* Stack Pointer */ + return &(sp[offset-16]); } else - return 0; + return 0; } os_context_register_t * @@ -85,7 +82,7 @@ os_context_sigmask_addr(os_context_t *context) return &(context->si_mask); } -void +void os_restore_fp_control(os_context_t *context) { /* Included here, for reference, is an attempt at the PPC @@ -93,13 +90,13 @@ os_restore_fp_control(os_context_t *context) Error on floating point exceptions, something like this would have to be done. -- CSR, 2002-07-13 - asm ("msfsf $255, %0" : : "m" - (os_context_fp_control(context) & - ~ (FLOAT_STICKY_BITS_MASK | FLOAT_EXCEPTIONS_BYTE_MASK))); + asm ("msfsf $255, %0" : : "m" + (os_context_fp_control(context) & + ~ (FLOAT_STICKY_BITS_MASK | FLOAT_EXCEPTIONS_BYTE_MASK))); */ } -void +void os_flush_icache(os_vm_address_t address, os_vm_size_t length) { /* This is the same for linux and solaris, so see sparc-assem.S */