From: Nikodemus Siivola Date: Fri, 30 May 2008 17:56:19 +0000 (+0000) Subject: 1.0.17.11: unithread build fix X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=4c64e9aed42b9041e6eb1f81ff335aa7ff7da506;p=sbcl.git 1.0.17.11: unithread build fix * Use thread_sigmask, not pthread_sigmask. --- diff --git a/src/pcl/methods.lisp b/src/pcl/methods.lisp index a734f6b..d2e5d9c 100644 --- a/src/pcl/methods.lisp +++ b/src/pcl/methods.lisp @@ -436,7 +436,7 @@ (defgeneric values-for-add-method (gf method) (:method ((gf standard-generic-function) (method standard-method)) ;; KLUDGE: Just a single generic dispatch, and everything else - ;; comes from permutation vectors. Would be nicer to define + ;; comes from permutation vectors. Would be nicer to define ;; REAL-ADD-METHOD with a proper method so that we could efficiently ;; use SLOT-VALUE there. ;; diff --git a/src/runtime/backtrace.c b/src/runtime/backtrace.c index dc5b1e8..958e10f 100644 --- a/src/runtime/backtrace.c +++ b/src/runtime/backtrace.c @@ -533,7 +533,7 @@ describe_thread_state(void) { sigset_t mask; struct thread *thread = arch_os_get_current_thread(); - pthread_sigmask(SIG_SETMASK, NULL, &mask); + thread_sigmask(SIG_SETMASK, NULL, &mask); printf("Signal mask:\n"); printf(" SIGALRM = %d\n", sigismember(&mask, SIGALRM)); printf(" SIGINT = %d\n", sigismember(&mask, SIGINT)); diff --git a/version.lisp-expr b/version.lisp-expr index bc370fd..686ba0a 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.17.10" +"1.0.17.11"