mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6cdc89332e
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
21 lines
479 B
C
21 lines
479 B
C
/**********************************************************************
|
|
|
|
ruby/mvm.h -
|
|
|
|
$Author$
|
|
created at: Sat May 31 15:17:36 2008
|
|
|
|
Copyright (C) 2008 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef RUBY_MVM_H
|
|
#define RUBY_MVM_H 1
|
|
|
|
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 */
|