mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm.c (rb_vm_rewrite_dfp_in_errinfo): change return type
to suppress a warning. * vm_core.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6bc83a18b7
commit
0971109e3d
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Sat Aug 27 20:46:05 2011 Kazuki Tsujimoto <kazuki@callcc.net>
|
||||||
|
|
||||||
|
* vm.c (rb_vm_rewrite_dfp_in_errinfo): change return type
|
||||||
|
to suppress a warning.
|
||||||
|
|
||||||
|
* vm_core.h: ditto.
|
||||||
|
|
||||||
Sat Aug 27 19:04:06 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
Sat Aug 27 19:04:06 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* internal.h (rb_strftime_timespec): moved from time.c and define only
|
* internal.h (rb_strftime_timespec): moved from time.c and define only
|
||||||
|
|
2
vm.c
2
vm.c
|
@ -473,7 +473,7 @@ rb_vm_make_env_object(rb_thread_t * th, rb_control_frame_t *cfp)
|
||||||
return envval;
|
return envval;
|
||||||
}
|
}
|
||||||
|
|
||||||
VALUE
|
void
|
||||||
rb_vm_rewrite_dfp_in_errinfo(rb_thread_t *th, rb_control_frame_t *cfp)
|
rb_vm_rewrite_dfp_in_errinfo(rb_thread_t *th, rb_control_frame_t *cfp)
|
||||||
{
|
{
|
||||||
/* rewrite dfp in errinfo to point to heap */
|
/* rewrite dfp in errinfo to point to heap */
|
||||||
|
|
|
@ -649,7 +649,7 @@ VALUE rb_vm_invoke_proc(rb_thread_t *th, rb_proc_t *proc, VALUE self,
|
||||||
int argc, const VALUE *argv, const rb_block_t *blockptr);
|
int argc, const VALUE *argv, const rb_block_t *blockptr);
|
||||||
VALUE rb_vm_make_proc(rb_thread_t *th, const rb_block_t *block, VALUE klass);
|
VALUE rb_vm_make_proc(rb_thread_t *th, const rb_block_t *block, VALUE klass);
|
||||||
VALUE rb_vm_make_env_object(rb_thread_t *th, rb_control_frame_t *cfp);
|
VALUE rb_vm_make_env_object(rb_thread_t *th, rb_control_frame_t *cfp);
|
||||||
VALUE rb_vm_rewrite_dfp_in_errinfo(rb_thread_t *th, rb_control_frame_t *cfp);
|
void rb_vm_rewrite_dfp_in_errinfo(rb_thread_t *th, rb_control_frame_t *cfp);
|
||||||
void rb_vm_inc_const_missing_count(void);
|
void rb_vm_inc_const_missing_count(void);
|
||||||
void rb_vm_gvl_destroy(rb_vm_t *vm);
|
void rb_vm_gvl_destroy(rb_vm_t *vm);
|
||||||
VALUE rb_vm_call(rb_thread_t *th, VALUE recv, VALUE id, int argc,
|
VALUE rb_vm_call(rb_thread_t *th, VALUE recv, VALUE id, int argc,
|
||||||
|
|
Loading…
Reference in a new issue