2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2015-10-21 16:54:38 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Imagination Technologies
|
|
|
|
* Author: Alex Smith <alex.smith@imgtec.com>
|
|
|
|
*/
|
|
|
|
|
2019-06-21 17:52:46 +08:00
|
|
|
#include <asm/vdso/vdso.h>
|
2015-10-21 16:54:38 +08:00
|
|
|
|
|
|
|
#include <uapi/asm/unistd.h>
|
|
|
|
|
|
|
|
#include <asm/regdef.h>
|
|
|
|
#include <asm/asm.h>
|
|
|
|
|
|
|
|
.section .text
|
|
|
|
.cfi_sections .debug_frame
|
|
|
|
|
|
|
|
LEAF(__vdso_rt_sigreturn)
|
|
|
|
.cfi_signal_frame
|
|
|
|
|
|
|
|
li v0, __NR_rt_sigreturn
|
|
|
|
syscall
|
|
|
|
|
|
|
|
END(__vdso_rt_sigreturn)
|
|
|
|
|
|
|
|
#if _MIPS_SIM == _MIPS_SIM_ABI32
|
|
|
|
|
|
|
|
LEAF(__vdso_sigreturn)
|
|
|
|
.cfi_signal_frame
|
|
|
|
|
|
|
|
li v0, __NR_sigreturn
|
|
|
|
syscall
|
|
|
|
|
|
|
|
END(__vdso_sigreturn)
|
|
|
|
|
|
|
|
#endif
|