summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-22 16:19:14 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-22 16:19:14 +0000
commita45cd8a01ce1d51cd124f0f87d9d56b6d3d60da8 (patch)
tree126b47e072822c9d390b7f3cbb0e2ef0417bda01 /vm_core.h
parent846ea1727fd34b4eb7c5a9b9d2643d04567c8f86 (diff)
* eval.c, eval_intern.h, include/ruby/intern.h, include/ruby/ruby.h,
vm.c, vm_core.h, vm_insnhelper.c: remove pointless "const". git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16540 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h36
1 files changed, 15 insertions, 21 deletions
diff --git a/vm_core.h b/vm_core.h
index df8038ff27..e19ff4e7fb 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -586,7 +586,7 @@ typedef rb_control_frame_t *
/* VM related object allocate functions */
/* TODO: should be static functions */
-VALUE rb_thread_alloc(const VALUE klass);
+VALUE rb_thread_alloc(VALUE klass);
VALUE rb_proc_alloc(VALUE klass);
/* for debug */
@@ -598,28 +598,22 @@ void rb_vm_bugreport(void);
/* functions about thread/vm execution */
-VALUE rb_iseq_eval(const VALUE iseqval);
+VALUE rb_iseq_eval(VALUE iseqval);
void rb_enable_interrupt(void);
void rb_disable_interrupt(void);
-int rb_thread_method_id_and_class(rb_thread_t * const th, ID * const idp,
- VALUE * const klassp);
-
-VALUE vm_eval_body(rb_thread_t * const th);
-VALUE vm_invoke_proc(rb_thread_t *const th, rb_proc_t * const proc,
- const VALUE self, const int argc, const VALUE * const argv,
- rb_block_t * const blockptr);
-VALUE vm_make_proc(rb_thread_t * const th, rb_control_frame_t *const cfp,
- rb_block_t * const block);
-VALUE vm_make_env_object(rb_thread_t * const th, rb_control_frame_t *cfp);
-VALUE vm_backtrace(rb_thread_t * const, int);
-
-VALUE vm_yield(rb_thread_t * const th, const int argc,
- const VALUE * const argv);
-VALUE vm_yield_with_cref(rb_thread_t * const th, const int argc,
- const VALUE * const argv, NODE * const cref);
-VALUE vm_call0(rb_thread_t * const th, const VALUE klass, const VALUE recv,
- const VALUE id, const ID oid, const int argc,
- const VALUE * const argv, NODE *const body, const int nosuper);
+int rb_thread_method_id_and_class(rb_thread_t *th, ID *idp, VALUE *klassp);
+
+VALUE vm_eval_body(rb_thread_t *th);
+VALUE vm_invoke_proc(rb_thread_t *th, rb_proc_t *proc, VALUE self,
+ int argc, const VALUE *argv, rb_block_t *blockptr);
+VALUE vm_make_proc(rb_thread_t *th, rb_control_frame_t *cfp, const rb_block_t *block);
+VALUE vm_make_env_object(rb_thread_t *th, rb_control_frame_t *cfp);
+VALUE vm_backtrace(rb_thread_t *, int);
+
+VALUE vm_yield(rb_thread_t *th, int argc, const VALUE *argv);
+VALUE vm_yield_with_cref(rb_thread_t *th, int argc, const VALUE *argv, const NODE *cref);
+VALUE vm_call0(rb_thread_t *th, VALUE klass, VALUE recv, VALUE id, ID oid,
+ int argc, const VALUE *argv, const NODE *body, int nosuper);
int vm_get_sourceline(rb_control_frame_t *);