blob: 715c868ab67effe08b3292784bc8431b274bacab [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#ifndef _ASM_PPC_SIGCONTEXT_H
2#define _ASM_PPC_SIGCONTEXT_H
3
4#include <asm/ptrace.h>
5
6
7struct sigcontext_struct {
8 unsigned long _unused[4];
9 int signal;
10 unsigned long handler;
11 unsigned long oldmask;
12 struct pt_regs *regs;
13};
14
15#endif