xref: /linux/arch/hexagon/include/asm/signal.h (revision df989b01b5f97dae8f9869cfacbda1308f2182c1)
1*cc45d2eaSThomas Weißschuh /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2*cc45d2eaSThomas Weißschuh /*
3*cc45d2eaSThomas Weißschuh  * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
4*cc45d2eaSThomas Weißschuh  *
5*cc45d2eaSThomas Weißschuh  * This program is free software; you can redistribute it and/or modify
6*cc45d2eaSThomas Weißschuh  * it under the terms of the GNU General Public License version 2 and
7*cc45d2eaSThomas Weißschuh  * only version 2 as published by the Free Software Foundation.
8*cc45d2eaSThomas Weißschuh  *
9*cc45d2eaSThomas Weißschuh  * This program is distributed in the hope that it will be useful,
10*cc45d2eaSThomas Weißschuh  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*cc45d2eaSThomas Weißschuh  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12*cc45d2eaSThomas Weißschuh  * GNU General Public License for more details.
13*cc45d2eaSThomas Weißschuh  *
14*cc45d2eaSThomas Weißschuh  * You should have received a copy of the GNU General Public License
15*cc45d2eaSThomas Weißschuh  * along with this program; if not, write to the Free Software
16*cc45d2eaSThomas Weißschuh  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17*cc45d2eaSThomas Weißschuh  * 02110-1301, USA.
18*cc45d2eaSThomas Weißschuh  */
19*cc45d2eaSThomas Weißschuh 
20*cc45d2eaSThomas Weißschuh #ifndef _ASM_SIGNAL_H
21*cc45d2eaSThomas Weißschuh #define _ASM_SIGNAL_H
22*cc45d2eaSThomas Weißschuh 
23*cc45d2eaSThomas Weißschuh extern unsigned long __rt_sigtramp_template[2];
24*cc45d2eaSThomas Weißschuh 
25*cc45d2eaSThomas Weißschuh void do_signal(struct pt_regs *regs);
26*cc45d2eaSThomas Weißschuh 
27*cc45d2eaSThomas Weißschuh #include <asm-generic/signal.h>
28*cc45d2eaSThomas Weißschuh 
29*cc45d2eaSThomas Weißschuh #endif
30