return RubyStruct.newStruct(runtime.getTmsStruct(),
new IRubyObject[] {
runtime.newFloat((double) tms.utime() / (double) hz),
runtime.newFloat((double) tms.stime() / (double) hz),
runtime.newFloat((double) tms.cutime() / (double) hz),
runtime.newFloat((double) tms.cstime() / (double) hz)
},
Block.NULL_BLOCK);
}
@Deprecated