From 3cb38bad21763eb16bd89d89a5fac9a186ac625b Mon Sep 17 00:00:00 2001 From: Gabor Melis Date: Mon, 22 Jun 2009 13:00:14 +0000 Subject: [PATCH] 1.0.29.33: fix compilation with QSHOW_SIGNAL_SAFE on win32 --- src/runtime/runtime.h | 2 +- src/runtime/thread.h | 1 - version.lisp-expr | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index bda2896..2d4eea7 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h @@ -49,7 +49,7 @@ #if QSHOW -#if QSHOW_SIGNAL_SAFE +#if QSHOW_SIGNAL_SAFE == 1 && !defined(LISP_FEATURE_WIN32) #include extern sigset_t blockable_sigset; diff --git a/src/runtime/thread.h b/src/runtime/thread.h index 510eadc..2f29aaa 100644 --- a/src/runtime/thread.h +++ b/src/runtime/thread.h @@ -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 *))) diff --git a/version.lisp-expr b/version.lisp-expr index a7f8d85..3d8f13d 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4