Searched defs:sys_time (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5391 long sys_time, user_time; local
5405 count = fscanf( fp, "%s %lu %lu\n", string, &user_time, &sys_time);
5410 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);
5457 &user_time, &sys_time);
5460 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5137 long sys_time, user_time; local
5151 count = fscanf( fp, "%s %lu %lu\n", string, &user_time, &sys_time);
5156 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);
5203 &user_time, &sys_time);
5206 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);

Completed in 64 milliseconds