xref: /linux/arch/riscv/kernel/vdso/rt_sigreturn.S (revision 58f6259b7a08f8d47d4629609703d358b042f0fd)
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	ecall
15	.cfi_endproc
16ENDPROC(__vdso_rt_sigreturn)
17