Initial revision

This commit is contained in:
wdenk
2000-10-11 22:04:29 +00:00
parent b15cbc0be0
commit 3ba686544f
7 changed files with 274 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef _ASM_PPC_SIGCONTEXT_H
#define _ASM_PPC_SIGCONTEXT_H
#include <asm/ptrace.h>
struct sigcontext_struct {
unsigned long _unused[4];
int signal;
unsigned long handler;
unsigned long oldmask;
struct pt_regs *regs;
};
#endif