X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fppc-linux-os.c;h=443c733baeb7bdcfead22026ee70624bbfbf1a04;hb=58084279740fc96c6ffcd14e86dca73b71b7c288;hp=00378f7b32e1bb01dc088db943d6faf06f897e89;hpb=9f10bc102adce15a820027777a03e49a7b7623da;p=sbcl.git diff --git a/src/runtime/ppc-linux-os.c b/src/runtime/ppc-linux-os.c index 00378f7..443c733 100644 --- a/src/runtime/ppc-linux-os.c +++ b/src/runtime/ppc-linux-os.c @@ -38,6 +38,16 @@ #include "validate.h" size_t os_vm_page_size; +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) {