From 118d3c770f1ca00eca7bcae812c53f14280e00f3 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 24 Sep 2006 06:01:43 +0000 Subject: * node.h (struct thread): ia64 support is broken by sandbox patch. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@11006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ node.h | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3ef6a513e..9186f10a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Sep 24 14:59:50 2006 Tanaka Akira + + * node.h (struct thread): ia64 support is broken by sandbox patch. + Sun Sep 24 12:11:16 2006 Tadayoshi Funaba * lib/date.rb, lib/date/format.rb: updated based on date2 3.9.3. diff --git a/node.h b/node.h index ec7e7714d..06678a401 100644 --- a/node.h +++ b/node.h @@ -412,9 +412,11 @@ struct thread { long stk_max; VALUE *stk_ptr; VALUE *stk_pos; -#ifdef __ia64__ - VALUE *bstr_ptr; +#ifdef __ia64 long bstr_len; + long bstr_max; + VALUE *bstr_ptr; + VALUE *bstr_pos; #endif struct FRAME *frame; -- cgit