root/arch/riscv/kernel/vdso/rt_sigreturn.S

/* [<][>][^][v][top][bottom][index][help] */
   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
  10 ENTRY(__vdso_rt_sigreturn)
  11         .cfi_startproc
  12         .cfi_signal_frame
  13         li a7, __NR_rt_sigreturn
  14         scall
  15         .cfi_endproc
  16 ENDPROC(__vdso_rt_sigreturn)

/* [<][>][^][v][top][bottom][index][help] */