diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-06-18 19:55:27 +0200 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-07-06 10:26:50 +0200 |
commit | 81d8279ea31a3fc6d4ffacd87119a04c561ca62e (patch) | |
tree | e439dc6343396010bb2ad48fb36137fda118c07b /arch/microblaze/include/asm/ucontext.h | |
parent | 8e4a718ff38d8539938ec3421935904c27e00c39 (diff) | |
download | blackbird-obmc-linux-81d8279ea31a3fc6d4ffacd87119a04c561ca62e.tar.gz blackbird-obmc-linux-81d8279ea31a3fc6d4ffacd87119a04c561ca62e.zip |
microblaze: fall back on generic header files for the ABI
Almost all of the ABI relevant header files now have generic
versions, so use those now in order to reduce the amount
of architecture specific code.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm/ucontext.h')
-rw-r--r-- | arch/microblaze/include/asm/ucontext.h | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/arch/microblaze/include/asm/ucontext.h b/arch/microblaze/include/asm/ucontext.h index 11f6bb3ae3a4..9bc07b9f30fb 100644 --- a/arch/microblaze/include/asm/ucontext.h +++ b/arch/microblaze/include/asm/ucontext.h @@ -1,22 +1 @@ -/* - * Copyright (C) 2006 Atmark Techno, Inc. - * - * This file is subject to the terms and conditions of the GNU General Public - * License. See the file "COPYING" in the main directory of this archive - * for more details. - */ - -#ifndef _ASM_MICROBLAZE_UCONTEXT_H -#define _ASM_MICROBLAZE_UCONTEXT_H - -#include <asm/sigcontext.h> - -struct ucontext { - unsigned long uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - struct sigcontext uc_mcontext; - sigset_t uc_sigmask; /* mask last for extensibility */ -}; - -#endif /* _ASM_MICROBLAZE_UCONTEXT_H */ +#include <asm-generic/ucontext.h> |