1.0.17.11: unithread build fix
authorNikodemus Siivola <nikodemus@random-state.net>
Fri, 30 May 2008 17:56:19 +0000 (17:56 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Fri, 30 May 2008 17:56:19 +0000 (17:56 +0000)
 * Use thread_sigmask, not pthread_sigmask.

src/pcl/methods.lisp
src/runtime/backtrace.c
version.lisp-expr

index a734f6b..d2e5d9c 100644 (file)
 (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.
     ;;
index dc5b1e8..958e10f 100644 (file)
@@ -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));
index bc370fd..686ba0a 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.17.10"
+"1.0.17.11"