arch/alpha/include/asm/delay.h

Source file repositories/reference/linux-study-clean/arch/alpha/include/asm/delay.h

File Facts

System
Linux kernel
Corpus path
arch/alpha/include/asm/delay.h
Extension
.h
Size
264 bytes
Lines
12
Domain
Architecture Layer
Bucket
arch/alpha
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 __ALPHA_DELAY_H
#define __ALPHA_DELAY_H

extern void __delay(int loops);
extern void udelay(unsigned long usecs);

extern void ndelay(unsigned long nsecs);
#define ndelay ndelay

#endif /* defined(__ALPHA_DELAY_H) */

Annotation

Implementation Notes