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 --- node.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'node.h') 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