class Benchmark::Tms

def initialize(utime = 0.0, stime = 0.0, cutime = 0.0, cstime = 0.0, real = 0.0, label = nil)


system CPU time, +real+ as the elapsed real time and +label+ as the label.
+cutime+ as the children's user CPU time, +cstime+ as the children's
+utime+ as the user CPU time, +stime+ as the system CPU time,
Returns an initialized Tms object which has
def initialize(utime = 0.0, stime = 0.0, cutime = 0.0, cstime = 0.0, real = 0.0, label = nil)
  @utime, @stime, @cutime, @cstime, @real, @label = utime, stime, cutime, cstime, real, label.to_s
  @total = @utime + @stime + @cutime + @cstime
end