[BACK]Return to ucontext.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / include / asm-h8300

File: [Development] / linux-2.6-xfs / include / asm-h8300 / Attic / ucontext.h (download)

Revision 1.1, Tue Dec 30 23:58:53 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN

Initial Import 2.6.0

#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;
	sigset_t	  uc_sigmask;	/* mask last for extensibility */
};

#endif