diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-27 18:24:11 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-27 18:24:11 +0000 |
| commit | f76dd2335e26cef41f5823ba9a2543657347f834 (patch) | |
| tree | 2182fd263eaa391135d4609478267f96e15bb987 | |
| parent | 9bac3905e817570b7020342312bd4812ef099506 (diff) | |
| download | ruby-f76dd2335e26cef41f5823ba9a2543657347f834.tar.gz ruby-f76dd2335e26cef41f5823ba9a2543657347f834.tar.xz ruby-f76dd2335e26cef41f5823ba9a2543657347f834.zip | |
* rubysig.h: fixed build problem with --enable-pthread on platforms
which don't have setitimer().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | rubysig.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Sep 28 03:16:41 2005 NAKAMURA Usaku <usa@ruby-lang.org> + + * rubysig.h: fixed build problem with --enable-pthread on platforms + which don't have setitimer(). + Mon Sep 26 20:59:28 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * parse.y: changed to ANSI function style. @@ -79,7 +79,7 @@ void rb_trap_restore_mask(void); RUBY_EXTERN int rb_thread_critical; void rb_thread_schedule(void); -#if defined(HAVE_SETITIMER) +#if defined(HAVE_SETITIMER) || defined(_THREAD_SAFE) RUBY_EXTERN int rb_thread_pending; # define CHECK_INTS do {\ if (!rb_prohibit_interrupt) {\ |
