xref: /linux/arch/loongarch/include/asm/sigframe.h (revision f9e437cddf6cf9e603bdaefe148c1f4792aaf39c)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 
3 #include <asm/siginfo.h>
4 #include <asm/ucontext.h>
5 
6 struct rt_sigframe {
7 	struct siginfo rs_info;
8 	struct ucontext rs_uctx;
9 };
10