arch/sh/include/asm/stacktrace.h

Source file repositories/reference/linux-study-clean/arch/sh/include/asm/stacktrace.h

File Facts

System
Linux kernel
Corpus path
arch/sh/include/asm/stacktrace.h
Extension
.h
Size
528 bytes
Lines
22
Domain
Architecture Layer
Bucket
arch/sh
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

struct stacktrace_ops {
	void (*address)(void *data, unsigned long address, int reliable);
};

void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
		unsigned long *stack,
		const struct stacktrace_ops *ops, void *data);

#endif /* _ASM_SH_STACKTRACE_H */

Annotation

Implementation Notes