arch/loongarch/vdso/sigreturn.S

Source file repositories/reference/linux-study-clean/arch/loongarch/vdso/sigreturn.S

File Facts

System
Linux kernel
Corpus path
arch/loongarch/vdso/sigreturn.S
Extension
.S
Size
459 bytes
Lines
25
Domain
Architecture Layer
Bucket
arch/loongarch
Inferred role
Architecture Layer: arch/loongarch
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 <asm/vdso/vdso.h>

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

#include <asm/regdef.h>
#include <asm/asm.h>
#include <asm/asm-offsets.h>

	.section	.text

SYM_SIGFUNC_START(__vdso_rt_sigreturn)

	li.w	a7, __NR_rt_sigreturn
	syscall	0

SYM_SIGFUNC_END(__vdso_rt_sigreturn)

Annotation

Implementation Notes