mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 04:55:21 +02:00
* process.c (rb_proc_times): Use RB_GC_GUARD to guard objects from GC.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4b033d2692
commit
31a092c687
2 changed files with 15 additions and 6 deletions
17
process.c
17
process.c
|
@ -6641,14 +6641,19 @@ rb_proc_times(VALUE obj)
|
|||
{
|
||||
const double hertz = get_clk_tck();
|
||||
struct tms buf;
|
||||
volatile VALUE utime, stime, cutime, sctime;
|
||||
VALUE utime, stime, cutime, cstime, ret;
|
||||
|
||||
times(&buf);
|
||||
return rb_struct_new(rb_cProcessTms,
|
||||
utime = DBL2NUM(buf.tms_utime / hertz),
|
||||
stime = DBL2NUM(buf.tms_stime / hertz),
|
||||
cutime = DBL2NUM(buf.tms_cutime / hertz),
|
||||
sctime = DBL2NUM(buf.tms_cstime / hertz));
|
||||
utime = DBL2NUM(buf.tms_utime / hertz);
|
||||
stime = DBL2NUM(buf.tms_stime / hertz);
|
||||
cutime = DBL2NUM(buf.tms_cutime / hertz);
|
||||
cstime = DBL2NUM(buf.tms_cstime / hertz);
|
||||
ret = rb_struct_new(rb_cProcessTms, utime, stime, cutime, cstime);
|
||||
RB_GC_GUARD(utime);
|
||||
RB_GC_GUARD(stime);
|
||||
RB_GC_GUARD(cutime);
|
||||
RB_GC_GUARD(cstime);
|
||||
return ret;
|
||||
}
|
||||
#else
|
||||
#define rb_proc_times rb_f_notimplement
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue