summaryrefslogtreecommitdiff
path: root/ruby_2_2/ext/objspace/objspace.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/ext/objspace/objspace.h')
-rw-r--r--ruby_2_2/ext/objspace/objspace.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/ruby_2_2/ext/objspace/objspace.h b/ruby_2_2/ext/objspace/objspace.h
deleted file mode 100644
index 95b84d6c1e..0000000000
--- a/ruby_2_2/ext/objspace/objspace.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef OBJSPACE_H
-#define OBJSPACE_H 1
-
-/* object_tracing.c */
-struct allocation_info {
- /* all of information don't need marking. */
- int living;
- VALUE flags;
- VALUE klass;
-
- /* allocation info */
- const char *path;
- unsigned long line;
- const char *class_path;
- VALUE mid;
- size_t generation;
-};
-struct allocation_info *objspace_lookup_allocation_info(VALUE obj);
-
-#endif