Skip to content

Commit

Permalink
1.0.17.39: fix build on SIG_INTERRUPT_THREAD-less platforms
Browse files Browse the repository at this point in the history
 * Patch by Josh Elsasser.
  • Loading branch information
nikodemus committed Jun 17, 2008
1 parent c25aa56 commit c8a4926
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/runtime/backtrace.c
Expand Up @@ -539,7 +539,9 @@ describe_thread_state(void)
printf(" SIGALRM = %d\n", sigismember(&mask, SIGALRM));
printf(" SIGINT = %d\n", sigismember(&mask, SIGINT));
printf(" SIGPROF = %d\n", sigismember(&mask, SIGPROF));
#ifdef SIG_INTERRUPT_THREAD
printf(" SIG_INTERRUPT_THREAD = %d\n", sigismember(&mask, SIG_INTERRUPT_THREAD));
#endif
#ifdef SIG_STOP_FOR_GC
printf(" SIG_STOP_FOR_GC = %d\n", sigismember(&mask, SIG_STOP_FOR_GC));
#endif
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Expand Up @@ -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.38"
"1.0.17.39"

0 comments on commit c8a4926

Please sign in to comment.