arch/m68k/include/asm/pgtable.h

Source file repositories/reference/linux-study-clean/arch/m68k/include/asm/pgtable.h

File Facts

System
Linux kernel
Corpus path
arch/m68k/include/asm/pgtable.h
Extension
.h
Size
293 bytes
Lines
18
Domain
Architecture Layer
Bucket
arch/m68k
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 __M68K_PGTABLE_H
#define __M68K_PGTABLE_H

#include <asm/page.h>

#ifdef __uClinux__
#include <asm/pgtable_no.h>
#else
#include <asm/pgtable_mm.h>
#endif

#ifndef __ASSEMBLER__
extern void paging_init(void);
#endif

#endif /* __M68K_PGTABLE_H */

Annotation

Implementation Notes