arch/riscv/kernel/vdso/rt_sigreturn.S

Source file repositories/reference/linux-study-clean/arch/riscv/kernel/vdso/rt_sigreturn.S

File Facts

System
Linux kernel
Corpus path
arch/riscv/kernel/vdso/rt_sigreturn.S
Extension
.S
Size
389 bytes
Lines
21
Domain
Architecture Layer
Bucket
arch/riscv
Inferred role
Architecture Layer: arch/riscv
Status
atlas-only

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

#include <linux/linkage.h>
#include <asm/unistd.h>
#include <asm/assembler.h>

	.text
SYM_FUNC_START(__vdso_rt_sigreturn)
	.cfi_startproc
	.cfi_signal_frame
	vdso_lpad
	li a7, __NR_rt_sigreturn
	ecall
	.cfi_endproc
SYM_FUNC_END(__vdso_rt_sigreturn)

emit_riscv_feature_1_and

Annotation

Implementation Notes