mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* rubysig.h: fixed build problem with --enable-pthread on platforms
which don't have setitimer(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c81747c47e
commit
0d86f93c3a
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Wed Sep 28 03:23:35 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 22:32:13 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (set_trace_func): add rb_secure(4) to prevent adding
|
||||
|
|
|
|||
|
|
@ -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) {\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue