vserver 1.9.5.x5
[linux-2.6.git] / include / asm-h8300 / ucontext.h
index 7987d6c..0bcf8f8 100644 (file)
@@ -1,22 +1,11 @@
 #ifndef _H8300_UCONTEXT_H
 #define _H8300_UCONTEXT_H
 
-typedef int greg_t;
-#define NGREG 10
-typedef greg_t gregset_t[NGREG];
-
-struct mcontext {
-       int version;
-       gregset_t gregs;
-};
-
-#define MCONTEXT_VERSION 1
-
 struct ucontext {
        unsigned long     uc_flags;
        struct ucontext  *uc_link;
        stack_t           uc_stack;
-       struct mcontext   uc_mcontext;
+       struct sigcontext uc_mcontext;
        sigset_t          uc_sigmask;   /* mask last for extensibility */
 };