rt_sigreturn.S 311 B

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