summaryrefslogtreecommitdiff
path: root/gdb/infptrace.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2001-05-15 00:03:38 +0000
committerKevin Buettner <kevinb@redhat.com>2001-05-15 00:03:38 +0000
commit11bc5832a9da5c23b3df59251c230c5bcce21f2f (patch)
tree50f0f065461a8b7af6dd698436b44c709296173d /gdb/infptrace.c
parent2e9e5ed6071269ff915c1caa9a9735849fd7c15b (diff)
downloadgdb-11bc5832a9da5c23b3df59251c230c5bcce21f2f.tar.gz
Redefine ptid_t to be a struct rather than an int.
Diffstat (limited to 'gdb/infptrace.c')
-rw-r--r--gdb/infptrace.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/infptrace.c b/gdb/infptrace.c
index d9eee366ccd..3be361495f8 100644
--- a/gdb/infptrace.c
+++ b/gdb/infptrace.c
@@ -110,22 +110,6 @@ static void fetch_register (int);
static void store_register (int);
#endif
-/*
- * Some systems (Linux) may have threads implemented as pseudo-processes,
- * in which case we may be tracing more than one process at a time.
- * In that case, inferior_pid will contain the main process ID and the
- * individual thread (process) id mashed together. These macros are
- * used to separate them out. The definitions may be overridden in tm.h
- *
- * NOTE: default definitions here are for systems with no threads.
- * Useful definitions MUST be provided in tm.h
- */
-
-#if !defined (PIDGET) /* Default definition for PIDGET/TIDGET. */
-#define PIDGET(PID) PID
-#define TIDGET(PID) 0
-#endif
-
void _initialize_kernel_u_addr (void);
void _initialize_infptrace (void);