diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-05-23 00:47:19 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-05-24 20:44:04 +0200 |
commit | 228f76d4dfe9a8a9b50e4c5ac8161a991fc8107c (patch) | |
tree | f739b8221a0392b73e8696d080c3bfc87c397b49 /libc/sysdeps/linux/sparc/sys | |
parent | 383122dd2e2fb78854ed420c5e819a3007b4f256 (diff) |
sparc: cleanup sparc64 bits and unused soft-fp
Remove a lot of unused 64 Bit header stuff.
Diffstat (limited to 'libc/sysdeps/linux/sparc/sys')
-rw-r--r-- | libc/sysdeps/linux/sparc/sys/ptrace.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/libc/sysdeps/linux/sparc/sys/ptrace.h b/libc/sysdeps/linux/sparc/sys/ptrace.h index 0f6c2ccae..d43acdfe4 100644 --- a/libc/sysdeps/linux/sparc/sys/ptrace.h +++ b/libc/sysdeps/linux/sparc/sys/ptrace.h @@ -1,6 +1,5 @@ /* `ptrace' debugger support interface. Linux/SPARC version. Copyright (C) 1996-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -21,7 +20,6 @@ #include <features.h> #include <bits/types.h> -#include <bits/wordsize.h> /* Linux/SPARC kernels up to 2.3.18 do not care much about what namespace polution, so use a kludge now. */ @@ -91,8 +89,6 @@ enum __ptrace_request trying to work around sparc-linux ptrace nastiness. */ #define PTRACE_SUNDETACH PTRACE_DETACH -#if __WORDSIZE == 32 - /* Get all general purpose registers used by a processes. This is not supported on all machines. */ PTRACE_GETREGS = 12, @@ -113,8 +109,6 @@ enum __ptrace_request PTRACE_SETFPREGS = 15, #define PT_SETFPREGS PTRACE_SETFPREGS -#endif - /* Attach to a process that is already running. */ PTRACE_ATTACH = 16, #define PT_ATTACH PTRACE_ATTACH @@ -132,38 +126,10 @@ enum __ptrace_request PTRACE_WRITETEXT = 19, #define PTRACE_WRITETEXT PTRACE_WRITETEXT -#if __WORDSIZE == 64 - - /* Get all general purpose registers used by a processes. - This is not supported on all machines. */ - PTRACE_GETREGS = 22, -#define PT_GETREGS PTRACE_GETREGS - - /* Set all general purpose registers used by a processes. - This is not supported on all machines. */ - PTRACE_SETREGS = 23, -#define PT_SETREGS PTRACE_SETREGS - -#endif - /* Continue and stop at the next (return from) syscall. */ PTRACE_SYSCALL = 24, #define PTRACE_SYSCALL PTRACE_SYSCALL -#if __WORDSIZE == 64 - - /* Get all floating point registers used by a processes. - This is not supported on all machines. */ - PTRACE_GETFPREGS = 25, -#define PT_GETFPREGS PTRACE_GETFPREGS - - /* Set all floating point registers used by a processes. - This is not supported on all machines. */ - PTRACE_SETFPREGS = 26, -#define PT_SETFPREGS PTRACE_SETFPREGS - -#endif - /* Set ptrace filter options. */ PTRACE_SETOPTIONS = 0x4200, #define PT_SETOPTIONS PTRACE_SETOPTIONS |