diff options
author | Paul Mackerras <paulus@samba.org> | 2005-11-03 17:04:08 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-03 17:04:08 +1100 |
commit | d3ab57ebdc6457543b346255fa47b0ecd7671136 (patch) | |
tree | bd2f8fe9193d21a038c645fd9af2e474073d370c /include/asm-ppc/ucontext.h | |
parent | 7f23292d5a6525a133d7cb8f2f33df39dd069822 (diff) | |
parent | 5adb83c2fa136e14172b1a65b0f8aa28f2cb9f62 (diff) | |
download | talos-obmc-linux-d3ab57ebdc6457543b346255fa47b0ecd7671136.tar.gz talos-obmc-linux-d3ab57ebdc6457543b346255fa47b0ecd7671136.zip |
Merge git://oak/home/sfr/kernels/iseries/work
Diffstat (limited to 'include/asm-ppc/ucontext.h')
-rw-r--r-- | include/asm-ppc/ucontext.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/asm-ppc/ucontext.h b/include/asm-ppc/ucontext.h deleted file mode 100644 index 664bc984d51f..000000000000 --- a/include/asm-ppc/ucontext.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef _ASMPPC_UCONTEXT_H -#define _ASMPPC_UCONTEXT_H - -#include <asm/elf.h> -#include <asm/signal.h> - -struct mcontext { - elf_gregset_t mc_gregs; - elf_fpregset_t mc_fregs; - unsigned long mc_pad[2]; - elf_vrregset_t mc_vregs __attribute__((__aligned__(16))); -}; - -struct ucontext { - unsigned long uc_flags; - struct ucontext __user *uc_link; - stack_t uc_stack; - int uc_pad[7]; - struct mcontext __user *uc_regs;/* points to uc_mcontext field */ - sigset_t uc_sigmask; - /* glibc has 1024-bit signal masks, ours are 64-bit */ - int uc_maskext[30]; - int uc_pad2[3]; - struct mcontext uc_mcontext; -}; - -#endif /* !_ASMPPC_UCONTEXT_H */ |