diff --git a/[refs] b/[refs] index 14d3720d208a..807abaec96a6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 62982ad6b013a35c2e49caab2b90855d3ad4531d +refs/heads/master: c75361bddb21761cabddde95dcae2059b021ea5d diff --git a/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace.h b/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace.h index e63b575492ee..453febe98993 100644 --- a/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace.h +++ b/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace.h @@ -1,5 +1,22 @@ -#ifdef __i386__ -#include "skas_ptrace_32.h" -#else -#include "skas_ptrace_64.h" +/* + * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) + * Licensed under the GPL + */ + +#ifndef __SYSDEP_X86_SKAS_PTRACE_H +#define __SYSDEP_X86_SKAS_PTRACE_H + +struct ptrace_faultinfo { + int is_write; + unsigned long addr; +}; + +struct ptrace_ldt { + int func; + void *ptr; + unsigned long bytecount; +}; + +#define PTRACE_LDT 54 + #endif diff --git a/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace_32.h b/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace_32.h deleted file mode 100644 index e27b8a791773..000000000000 --- a/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace_32.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) - * Licensed under the GPL - */ - -#ifndef __SYSDEP_I386_SKAS_PTRACE_H -#define __SYSDEP_I386_SKAS_PTRACE_H - -struct ptrace_faultinfo { - int is_write; - unsigned long addr; -}; - -struct ptrace_ldt { - int func; - void *ptr; - unsigned long bytecount; -}; - -#define PTRACE_LDT 54 - -#endif diff --git a/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace_64.h b/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace_64.h deleted file mode 100644 index 95db4be786e4..000000000000 --- a/trunk/arch/um/sys-x86/shared/sysdep/skas_ptrace_64.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) - * Licensed under the GPL - */ - -#ifndef __SYSDEP_X86_64_SKAS_PTRACE_H -#define __SYSDEP_X86_64_SKAS_PTRACE_H - -struct ptrace_faultinfo { - int is_write; - unsigned long addr; -}; - -struct ptrace_ldt { - int func; - void *ptr; - unsigned long bytecount; -}; - -#define PTRACE_LDT 54 - -#endif