1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_core.h (struct rb_vm_struct): moved ruby_debug, ruby_verbose, and

rb_progname.

* ruby.c (rb_argv0): no longer used.

* vm.c: getters/setters for ruby_{debug,verbose}.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-06-09 05:18:03 +00:00
parent 9fb521515d
commit 6cdc89332e
6 changed files with 40 additions and 10 deletions

View file

@ -15,4 +15,7 @@
typedef struct rb_vm_struct rb_vm_t;
typedef struct rb_thread_struct rb_thread_t;
VALUE *ruby_vm_verbose_ptr(rb_vm_t *);
VALUE *ruby_vm_debug_ptr(rb_vm_t *);
#endif /* RUBY_MVM_H */