blob: a257d66906218c96235c502bec9bf2e8bcff3e60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __LINUX_CPUTIME_H
#define __LINUX_CPUTIME_H
#include <asm/cputime.h>
#ifndef cputime_to_nsecs
# define cputime_to_nsecs(__ct) \
(cputime_to_usecs(__ct) * NSEC_PER_USEC)
#endif
#endif /* __LINUX_CPUTIME_H */
|