mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix previous change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12538 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3cd5af52e9
commit
d3be3d7102
1 changed files with 5 additions and 1 deletions
|
@ -111,7 +111,11 @@ thread_start_func_1(void *th_ptr)
|
|||
VALUE stack_start;
|
||||
|
||||
/* run */
|
||||
thread_start_func_2(th, &stack_start, rb_ia64_bsp());
|
||||
thread_start_func_2(th, &stack_start
|
||||
#ifdef __ia64
|
||||
, rb_ia64_bsp()
|
||||
#endif
|
||||
);
|
||||
}
|
||||
#if USE_THREAD_CACHE
|
||||
if (1) {
|
||||
|
|
Loading…
Reference in a new issue