mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
14 lines
250 B
C
14 lines
250 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef __TOOLS_LINUX_ASM_TIMEX_H
|
||
|
#define __TOOLS_LINUX_ASM_TIMEX_H
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
#define cycles_t clock_t
|
||
|
|
||
|
static inline cycles_t get_cycles(void)
|
||
|
{
|
||
|
return clock();
|
||
|
}
|
||
|
#endif // __TOOLS_LINUX_ASM_TIMEX_H
|