diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-08 23:39:14 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-08 23:39:14 +0000 |
commit | 179101d62473e2bef454631d0dffdeb6b17dfa9d (patch) | |
tree | c36656313b3eb69ac1531dcfbcd8bae6715adfd5 /gdb/config | |
parent | b9efddcd6f658c74764aea1937e1f16e1ff35d5f (diff) | |
download | gdb-179101d62473e2bef454631d0dffdeb6b17dfa9d.zip gdb-179101d62473e2bef454631d0dffdeb6b17dfa9d.tar.gz gdb-179101d62473e2bef454631d0dffdeb6b17dfa9d.tar.bz2 |
ChangeLog:
* config/i386/nm-i386sol2.h (USE_PROC_FS): Do not define.
* config/mips/nm-irix5.h (USE_PROC_FS): Do not define.
* config/nm-linux.h (USE_PROC_FS): Do not undefine.
doc/ChangeLog:
* gdbint.texinfo (Native Conditionals): Remove USE_PROC_FS.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/nm-i386sol2.h | 4 | ||||
-rw-r--r-- | gdb/config/mips/nm-irix5.h | 4 | ||||
-rw-r--r-- | gdb/config/nm-linux.h | 3 |
3 files changed, 0 insertions, 11 deletions
diff --git a/gdb/config/i386/nm-i386sol2.h b/gdb/config/i386/nm-i386sol2.h index 01c83b3..185d80e 100644 --- a/gdb/config/i386/nm-i386sol2.h +++ b/gdb/config/i386/nm-i386sol2.h @@ -18,10 +18,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* SVR4 has /proc support, so use it instead of ptrace. */ - -#define USE_PROC_FS - #ifdef NEW_PROC_API /* Solaris 6 and above can do HW watchpoints */ #define TARGET_HAS_HARDWARE_WATCHPOINTS diff --git a/gdb/config/mips/nm-irix5.h b/gdb/config/mips/nm-irix5.h index 6733fa5..66b347d 100644 --- a/gdb/config/mips/nm-irix5.h +++ b/gdb/config/mips/nm-irix5.h @@ -19,10 +19,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* SVR4 has /proc support, so use it instead of ptrace. */ - -#define USE_PROC_FS - #undef IN_SOLIB_DYNSYM_RESOLVE_CODE #define TARGET_HAS_HARDWARE_WATCHPOINTS diff --git a/gdb/config/nm-linux.h b/gdb/config/nm-linux.h index 351ea74..6d82c3e 100644 --- a/gdb/config/nm-linux.h +++ b/gdb/config/nm-linux.h @@ -22,9 +22,6 @@ struct target_ops; -/* GNU/Linux is SVR4-ish but its /proc file system isn't. */ -#undef USE_PROC_FS - extern void lin_thread_get_thread_signals (sigset_t *mask); #define GET_THREAD_SIGNALS(mask) lin_thread_get_thread_signals (mask) |