diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2008-08-18 07:58:32 +0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-23 09:55:20 +0400 |
commit | 3be311e324087d94050010b97821b9d77a45e92f (patch) | |
tree | aa79e6ac750d5327fd4a4221e84600386dea1659 /arch/um/include/shared | |
parent | 1de1502c96c3c163c06419bfe838c73632fa8d9c (diff) | |
download | linux-3be311e324087d94050010b97821b9d77a45e92f.tar.xz |
x86, um: sanitize uml sigcontext.h uses
a) the only difference between sigcontext and sysdep/sigcontext
is that the former contains externs for two long-dead functions.
Removed, switched the only user to sysdep/sigcontext
b) asm/sigcontext.h is removable - that of underlying architecture
would get used.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/um/include/shared')
-rw-r--r-- | arch/um/include/shared/sigcontext.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/um/include/shared/sigcontext.h b/arch/um/include/shared/sigcontext.h deleted file mode 100644 index 59816ca7a8df..000000000000 --- a/arch/um/include/shared/sigcontext.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) - * Licensed under the GPL - */ - -#ifndef __UML_SIGCONTEXT_H__ -#define __UML_SIGCONTEXT_H__ - -#include "sysdep/sigcontext.h" - -extern int sc_size(void *data); -extern void sc_to_sc(void *to_ptr, void *from_ptr); - -#endif - -/* - * Overrides for Emacs so that we follow Linus's tabbing style. - * Emacs will notice this stuff at the end of the file and automatically - * adjust the settings for this buffer only. This must remain at the end - * of the file. - * --------------------------------------------------------------------------- - * Local variables: - * c-file-style: "linux" - * End: - */ |