summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-24 06:01:43 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-24 06:01:43 +0000
commita1596a47677af2aadaf4dea1e420e6500bb37c7f (patch)
tree99b8e5ad1faee1218d469360a9bc8ff7e13bb18c /node.h
parent1f0402091e3614b090f14a1fa0d8b9036a829748 (diff)
* node.h (struct thread): ia64 support is broken by sandbox patch.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/node.h b/node.h
index ec7e7714d3..06678a4010 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;