X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fhppa-linux-os.c;h=696ee1dbd546a0dbb096f77dba2b92b2c76dd0ca;hb=1e9a538c32223df9132c1e7fb2b67a2129c40a8d;hp=a6b39dcd4a07308557e3f7659b613be73e3e3cf4;hpb=8a19c6876412b8ad1cf729297c2a373d63a0d0ec;p=sbcl.git diff --git a/src/runtime/hppa-linux-os.c b/src/runtime/hppa-linux-os.c index a6b39dc..696ee1d 100644 --- a/src/runtime/hppa-linux-os.c +++ b/src/runtime/hppa-linux-os.c @@ -37,6 +37,16 @@ #include "validate.h" size_t os_vm_page_size; +#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 * os_context_register_addr(os_context_t *context, int offset)