0.9.5.73:
authorJuho Snellman <jsnell@iki.fi>
Sat, 15 Oct 2005 22:25:00 +0000 (22:25 +0000)
committerJuho Snellman <jsnell@iki.fi>
Sat, 15 Oct 2005 22:25:00 +0000 (22:25 +0000)
* Fix x86/x86-64 build
        * Kill a gcc warning on unithreaded x86

src/runtime/monitor.c
src/runtime/thread.c
version.lisp-expr

index 0f82724..b59bf4e 100644 (file)
@@ -203,7 +203,8 @@ regs_cmd(char **ptr)
     printf("ALLOC\t=\t0x%08lx\n", (unsigned long)dynamic_space_free_pointer);
 #else
     printf("ALLOC\t=\t0x%08lx\n",
-           (unsigned long)SymbolValue(ALLOCATION_POINTER));
+           (unsigned long)SymbolValue(ALLOCATION_POINTER,
+                                      arch_os_get_current_thread()));
 #endif
 
 #ifndef LISP_FEATURE_GENCGC
index ef73baf..16a27b0 100644 (file)
@@ -38,15 +38,13 @@ extern struct interrupt_data * global_interrupt_data;
 extern int linux_no_threads_p;
 
 #ifdef LISP_FEATURE_SB_THREAD
-
 pthread_mutex_t all_threads_lock = PTHREAD_MUTEX_INITIALIZER;
+#endif
 
 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
 extern lispobj call_into_lisp_first_time(lispobj fun, lispobj *args, int nargs);
 #endif
 
-#endif
-
 static void
 link_thread(struct thread *th)
 {
index dc7fdb9..5927fc8 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.5.72"
+"0.9.5.73"