rt_sigreturn.S (311B)
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (C) 2014 Regents of the University of California 4 */ 5 6#include <linux/linkage.h> 7#include <asm/unistd.h> 8 9 .text 10ENTRY(__vdso_rt_sigreturn) 11 .cfi_startproc 12 .cfi_signal_frame 13 li a7, __NR_rt_sigreturn 14 scall 15 .cfi_endproc 16ENDPROC(__vdso_rt_sigreturn)