]> Git Repo - J-linux.git/blob - arch/parisc/include/asm/rt_sigframe.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / arch / parisc / include / asm / rt_sigframe.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_PARISC_RT_SIGFRAME_H
3 #define _ASM_PARISC_RT_SIGFRAME_H
4
5 struct rt_sigframe {
6         unsigned int tramp[2]; /* holds original return address */
7         struct siginfo info;
8         struct ucontext uc;
9 };
10
11 #define SIGFRAME                128
12 #define FUNCTIONCALLFRAME       96
13 #define PARISC_RT_SIGFRAME_SIZE                                 \
14         (((sizeof(struct rt_sigframe) + FUNCTIONCALLFRAME) + SIGFRAME) & -SIGFRAME)
15
16 #endif
This page took 0.025963 seconds and 4 git commands to generate.