summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-07 09:58:26 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-07 09:58:26 +0000
commitc2115fe8f4c5f11f11a9b8312ffa1154c7dda440 (patch)
tree54a2c0ad5ccc798c1c2cb22f9ba775201edba1c9 /ruby.c
parenta1455c75e93c536e0e8e4076fe2fa091ecb1d4ab (diff)
* include/ruby/ruby.h: enum ruby_value_flags removed.
* ruby.c: define RUBY_FL_* as const VALUE for gdb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13649 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c31
1 files changed, 30 insertions, 1 deletions
diff --git a/ruby.c b/ruby.c
index b34bf7b58c..bdb044ebb1 100644
--- a/ruby.c
+++ b/ruby.c
@@ -58,11 +58,40 @@
static const union {
enum ruby_special_consts special_consts;
enum ruby_value_type value_type;
- enum ruby_value_flags value_flags;
enum node_type node_type;
enum ruby_node_flags node_flags;
} dummy_gdb_enums;
+const VALUE RUBY_FL_MARK = FL_MARK;
+const VALUE RUBY_FL_RESERVED = FL_RESERVED;
+const VALUE RUBY_FL_FINALIZE = FL_FINALIZE;
+const VALUE RUBY_FL_TAINT = FL_TAINT;
+const VALUE RUBY_FL_EXIVAR = FL_EXIVAR;
+const VALUE RUBY_FL_FREEZE = FL_FREEZE;
+const VALUE RUBY_FL_SINGLETON = FL_SINGLETON;
+const VALUE RUBY_FL_USER0 = FL_USER0;
+const VALUE RUBY_FL_USER1 = FL_USER1;
+const VALUE RUBY_FL_USER2 = FL_USER2;
+const VALUE RUBY_FL_USER3 = FL_USER3;
+const VALUE RUBY_FL_USER4 = FL_USER4;
+const VALUE RUBY_FL_USER5 = FL_USER5;
+const VALUE RUBY_FL_USER6 = FL_USER6;
+const VALUE RUBY_FL_USER7 = FL_USER7;
+const VALUE RUBY_FL_USER8 = FL_USER8;
+const VALUE RUBY_FL_USER9 = FL_USER9;
+const VALUE RUBY_FL_USER10 = FL_USER10;
+const VALUE RUBY_FL_USER11 = FL_USER11;
+const VALUE RUBY_FL_USER12 = FL_USER12;
+const VALUE RUBY_FL_USER13 = FL_USER13;
+const VALUE RUBY_FL_USER14 = FL_USER14;
+const VALUE RUBY_FL_USER15 = FL_USER15;
+const VALUE RUBY_FL_USER16 = FL_USER16;
+const VALUE RUBY_FL_USER17 = FL_USER17;
+const VALUE RUBY_FL_USER18 = FL_USER18;
+const VALUE RUBY_FL_USER19 = FL_USER19;
+const VALUE RUBY_FL_USER20 = FL_USER20;
+const int RUBY_FL_USHIFT = FL_USHIFT;
+
#ifndef HAVE_STDLIB_H
char *getenv();
#endif