Staging
v0.5.1
swh:1:snp:a902887e4be9191b7c6c4406aa06b31c1ce2c7cc
Raw File
Tip revision: 136057256686de39cc3a07c2e39ef6bc43003ff6 authored by Linus Torvalds on 21 November 2021, 21:47:39 UTC
Linux 5.16-rc2
Tip revision: 1360572
trampoline.S
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
 */

/*
 * Trampoline sequences to be copied onto user stack.
 * This consumes a little more space than hand-assembling
 * immediate constants for use in C, but is more portable
 * to future tweaks to the Hexagon instruction set.
 */

#include <asm/unistd.h>

/*  Sig trampolines - call sys_sigreturn or sys_rt_sigreturn as appropriate */

/*  plain sigreturn is gone.  */

	.globl __rt_sigtramp_template
__rt_sigtramp_template:
	r6 = #__NR_rt_sigreturn;
	trap0(#1);
back to top