File: cputime.c

package info (click to toggle)
grub2 2.02~beta2-18
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 54,444 kB
  • sloc: ansic: 370,601; asm: 16,177; sh: 12,923; cpp: 1,993; python: 1,438; makefile: 1,357; lex: 393; sed: 271; yacc: 268; lisp: 50; awk: 48; perl: 31
file content (15 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <config.h>
#include <config-util.h>

#include <sys/times.h>
#include <unistd.h>
#include <grub/emu/misc.h>

grub_uint64_t
grub_util_get_cpu_time_ms (void)
{
  struct tms tm;

  times (&tm); 
  return (tm.tms_utime * 1000ULL) / sysconf(_SC_CLK_TCK);
}