X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fppc-linux-os.c;h=443c733baeb7bdcfead22026ee70624bbfbf1a04;hb=65a01dae3d437a48e8dd0d051a446245f9e29929;hp=14411f60ff253b60a7ebe04bcecbe85fcaab0e6a;hpb=637371f800e71ac4449e01d59571c9d10f6bde26;p=sbcl.git diff --git a/src/runtime/ppc-linux-os.c b/src/runtime/ppc-linux-os.c index 14411f6..443c733 100644 --- a/src/runtime/ppc-linux-os.c +++ b/src/runtime/ppc-linux-os.c @@ -38,10 +38,15 @@ #include "validate.h" size_t os_vm_page_size; -#if defined GENCGC /* unlikely ... */ -#error SBCL PPC does not work with the GENCGC -#include "gencgc.h" -#endif +struct thread *arch_os_get_current_thread() { + return all_threads; +} +int arch_os_thread_init(struct thread *thread) { + return 1; /* success */ +} +int arch_os_thread_cleanup(struct thread *thread) { + return 1; /* success */ +} os_context_register_t * os_context_register_addr(os_context_t *context, int offset)