summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--node.h6
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ef6a513e5..9186f10a8d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 24 14:59:50 2006 Tanaka Akira <akr@fsij.org>
+
+ * node.h (struct thread): ia64 support is broken by sandbox patch.
+
Sun Sep 24 12:11:16 2006 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb, lib/date/format.rb: updated based on date2 3.9.3.
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;