arch/um/include/shared/registers.h

Source file repositories/reference/linux-study-clean/arch/um/include/shared/registers.h

File Facts

System
Linux kernel
Corpus path
arch/um/include/shared/registers.h
Extension
.h
Size
400 bytes
Lines
17
Domain
Architecture Layer
Bucket
arch/um
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 __REGISTERS_H
#define __REGISTERS_H

#include <sysdep/ptrace.h>

extern int init_pid_registers(int pid);
extern void get_safe_registers(unsigned long *regs, unsigned long *fp_regs);
extern int get_fp_registers(int pid, unsigned long *regs);
extern int put_fp_registers(int pid, unsigned long *regs);

#endif

Annotation

Implementation Notes