arch/arm64/include/asm/timex.h

Source file repositories/reference/linux-study-clean/arch/arm64/include/asm/timex.h

File Facts

System
Linux kernel
Corpus path
arch/arm64/include/asm/timex.h
Extension
.h
Size
343 bytes
Lines
19
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef __ASM_TIMEX_H
#define __ASM_TIMEX_H

#include <asm/arch_timer.h>

/*
 * Use the current timer as a cycle counter since this is what we use for
 * the delay loop.
 */
#define get_cycles()	arch_timer_read_counter()

#include <asm-generic/timex.h>

#endif

Annotation

Implementation Notes