| /src/bin/ps/ |
| ps.h | 47 TIMEVAL, CPUTIME, PCPU, VSIZE, PROCFLAG, PROCACFLAG,
|
| keyword.c | 117 VAR3("cputime", "time", ALIAS), 150 VAR6("ltime", "LTIME", LWP, lcputime, 0, CPUTIME), 205 VAR6("time", "TIME", 0, cputime, 0, CPUTIME),
|
| ps.c | 730 case CPUTIME:
|
| /src/games/larn/ |
| diag.c | 22 static struct tms cputime; variable in typeref:struct:tms 200 times(&cputime); /* get cpu time */ 201 c[CPUTIME] += (cputime.tms_utime + cputime.tms_stime) / 60;
|
| header.h | 130 #define CPUTIME 54
|
| scores.c | 77 short cputime;/* CPU time needed in seconds */ member in struct:log_fmt 691 times(&cputime);/* get CPU time -- write out score info */ 692 logg.cputime = i = (cputime.tms_utime + cputime.tms_stime) / 60 + c[CPUTIME]; 790 lprintf(" CPU time used: %ld seconds, Machine usage: %ld.%02ld%%\n", (long) (logg.cputime), (long) (logg.usage / 100), (long) (logg.usage % 100)); 792 lprintf(" out bytes per move: %ld, time per move: %ld ms\n", (long) (logg.bytout / logg.moves), (long) ((logg.cputime * 1000) / logg.moves));
|