* Use thread_sigmask, not pthread_sigmask.
(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.
;;
{
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));
;;; 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"