Help for this page

Select Code to Download


  1. or download this
        use Class::Struct;
    
    ...
            tv_secs  => '$',
            tv_usecs => '$',
        ]);
    
  2. or download this
        # create an object:
        my $t = new rusage;
    ...
        $t->ru_utime->tv_usecs(0);
        $t->ru_stime->tv_secs(5);
        $t->ru_stime->tv_usecs(0);