cputime.h 307 B

12345678910111213
  1. #ifndef __LINUX_CPUTIME_H
  2. #define __LINUX_CPUTIME_H
  3. #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
  4. #include <asm/cputime.h>
  5. #ifndef cputime_to_nsecs
  6. # define cputime_to_nsecs(__ct) \
  7. (cputime_to_usecs(__ct) * NSEC_PER_USEC)
  8. #endif
  9. #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
  10. #endif /* __LINUX_CPUTIME_H */