diff options
author | Pedro Alves <palves@redhat.com> | 2009-02-05 18:54:50 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-02-05 18:54:50 +0000 |
commit | 54ba13f733396d107167bf89afd43db66bebe779 (patch) | |
tree | 7374f85aa64ed651745876a31b1deb7f1f5aa17d /gdb/target.h | |
parent | 9d49bdc28ad672f6e23e9f33759f73968d6885ff (diff) | |
download | gdb-54ba13f733396d107167bf89afd43db66bebe779.zip gdb-54ba13f733396d107167bf89afd43db66bebe779.tar.gz gdb-54ba13f733396d107167bf89afd43db66bebe779.tar.bz2 |
* target.h (target_tid_to_str): Delete.
* thread.c (print_thread_info, thread_apply_all_command)
(thread_apply_command, thread_command, do_captured_thread_select):
Use target_pid_to_str instead of target_tid_to_str.
* linux-fork.c (delete_fork_command): Likewise.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/target.h b/gdb/target.h index 7cdd81e..5b5fa5e 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1016,11 +1016,7 @@ int target_supports_non_stop (void); #undef target_pid_to_str #define target_pid_to_str(PID) current_target.to_pid_to_str (PID) -#ifndef target_tid_to_str -#define target_tid_to_str(PID) \ - target_pid_to_str (PID) extern char *normal_pid_to_str (ptid_t ptid); -#endif /* Return a short string describing extra information about PID, e.g. "sleeping", "runnable", "running on LWP 3". Null return value |