diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2007-12-16 19:14:23 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2007-12-16 19:14:23 +0000 |
commit | c95310c6b8cd7408468629923d00d3f9d807f238 (patch) | |
tree | f47709b3e511daacfec043177899557e8559d837 /gdb/target.h | |
parent | 09fa0d7cfd2c880dba946a95700a3fe07881c12d (diff) | |
download | gdb-c95310c6b8cd7408468629923d00d3f9d807f238.zip gdb-c95310c6b8cd7408468629923d00d3f9d807f238.tar.gz gdb-c95310c6b8cd7408468629923d00d3f9d807f238.tar.bz2 |
* target.h (target_pid_or_tid_to_str): Remove.
* infrun.c (handle_inferior_event):
Use target_pid_to_str instead of
target_pid_or_tid_to_str.
(normal_stop): Likewise.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/target.h b/gdb/target.h index 10fe04b..ec5f86d 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -991,11 +991,6 @@ extern char *normal_pid_to_str (ptid_t ptid); #define target_extra_thread_info(TP) \ (current_target.to_extra_thread_info (TP)) -#ifndef target_pid_or_tid_to_str -#define target_pid_or_tid_to_str(ID) \ - target_pid_to_str (ID) -#endif - /* Attempts to find the pathname of the executable file that was run to create a specified process. |