mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-18 23:09:29 +02:00
This has been scheduled for removal more than a decade ago and the comments related to it have been dutifully ignored. The last dependencies are gone. Remove it along with various now empty asm/timex.h files. Signed-off-by: Thomas Gleixner <tglx@kernel.org> Reviewed-by: Christophe Leroy (CS GROUP) <chleroy@kernel.org> Link: https://patch.msgid.link/20260410120317.910770161@kernel.org
30 lines
647 B
C
30 lines
647 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* linux/include/asm-alpha/timex.h
|
|
*
|
|
* ALPHA architecture timex specifications
|
|
*/
|
|
#ifndef _ASMALPHA_TIMEX_H
|
|
#define _ASMALPHA_TIMEX_H
|
|
|
|
/*
|
|
* Standard way to access the cycle counter.
|
|
* Currently only used on SMP for scheduling.
|
|
*
|
|
* Only the low 32 bits are available as a continuously counting entity.
|
|
* But this only means we'll force a reschedule every 8 seconds or so,
|
|
* which isn't an evil thing.
|
|
*/
|
|
|
|
typedef unsigned int cycles_t;
|
|
|
|
static inline cycles_t get_cycles (void)
|
|
{
|
|
cycles_t ret;
|
|
__asm__ __volatile__ ("rpcc %0" : "=r"(ret));
|
|
return ret;
|
|
}
|
|
#define get_cycles get_cycles
|
|
|
|
#endif
|