1.0.29.33: fix compilation with QSHOW_SIGNAL_SAFE on win32
authorGabor Melis <mega@hotpop.com>
Mon, 22 Jun 2009 13:00:14 +0000 (13:00 +0000)
committerGabor Melis <mega@hotpop.com>
Mon, 22 Jun 2009 13:00:14 +0000 (13:00 +0000)
src/runtime/runtime.h
src/runtime/thread.h
version.lisp-expr

index bda2896..2d4eea7 100644 (file)
@@ -49,7 +49,7 @@
 
 #if QSHOW
 
-#if QSHOW_SIGNAL_SAFE
+#if QSHOW_SIGNAL_SAFE == 1 && !defined(LISP_FEATURE_WIN32)
 
 #include <signal.h>
 extern sigset_t blockable_sigset;
index 510eadc..2f29aaa 100644 (file)
@@ -58,7 +58,6 @@ extern pthread_key_t lisp_thread;
 #endif
 
 extern int kill_safely(os_thread_t os_thread, int signal);
-extern void kill_a_lisp_thread(int signal);
 
 #define THREAD_SLOT_OFFSET_WORDS(c) \
  (offsetof(struct thread,c)/(sizeof (struct thread *)))
index a7f8d85..3d8f13d 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".)
-"1.0.29.32"
+"1.0.29.33"