diff options
author | Tom Tromey <tom@tromey.com> | 2018-06-11 11:25:49 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-03 11:36:42 -0600 |
commit | f2907e49910853edf3c1aec995b3c44b3bba8999 (patch) | |
tree | 7352a0fdbe482ea1e7c60ed5bc37f00ceb17287d /gdb/remote.c | |
parent | fd79271bd9dd6bb1626fb6f5ec3a415dc24950b1 (diff) | |
download | gdb-f2907e49910853edf3c1aec995b3c44b3bba8999.zip gdb-f2907e49910853edf3c1aec995b3c44b3bba8999.tar.gz gdb-f2907e49910853edf3c1aec995b3c44b3bba8999.tar.bz2 |
Remove pid_to_ptid
This removes pid_to_ptid in favor of calling the ptid_t constructor
directly.
gdb/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* common/ptid.c (pid_to_ptid): Remove.
* common/ptid.h (pid_to_ptid): Don't declare.
* aix-thread.c: Update.
* arm-linux-nat.c: Update.
* common/ptid.c: Update.
* common/ptid.h: Update.
* corelow.c: Update.
* ctf.c: Update.
* darwin-nat.c: Update.
* fbsd-nat.c: Update.
* fork-child.c: Update.
* gnu-nat.c: Update.
* go32-nat.c: Update.
* inf-ptrace.c: Update.
* infcmd.c: Update.
* inferior.c: Update.
* infrun.c: Update.
* linux-fork.c: Update.
* linux-nat.c: Update.
* nat/aarch64-linux-hw-point.c: Update.
* nat/fork-inferior.c: Update.
* nat/x86-linux-dregs.c: Update.
* nto-procfs.c: Update.
* obsd-nat.c: Update.
* procfs.c: Update.
* progspace.c: Update.
* remote.c: Update.
* rs6000-nat.c: Update.
* s390-linux-nat.c: Update.
* sol-thread.c: Update.
* spu-linux-nat.c: Update.
* target.c: Update.
* top.c: Update.
* tracefile-tfile.c: Update.
* windows-nat.c: Update.
gdb/gdbserver/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* linux-low.c: Update.
* linux-ppc-low.c: Update.
* linux-x86-low.c: Update.
* proc-service.c: Update.
* server.c: Update.
* spu-low.c: Update.
* thread-db.c: Update.
* win32-low.c: Update.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 31118d2..40080b5 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2443,7 +2443,7 @@ remote_target::remote_notice_new_inferior (ptid_t currthread, int executing) stub doesn't support qC. This is the first stop reported after an attach, so this is the main thread. Update the ptid in the thread list. */ - if (in_thread_list (pid_to_ptid (pid))) + if (in_thread_list (ptid_t (pid))) thread_change_ptid (inferior_ptid, currthread); else { @@ -5682,7 +5682,7 @@ remote_target::remote_detach_1 (inferior *inf, int from_tty) { /* Save the pid as a string before mourning, since that will unpush the remote target, and we need the string after. */ - std::string infpid = target_pid_to_str (pid_to_ptid (pid)); + std::string infpid = target_pid_to_str (ptid_t (pid)); target_mourn_inferior (inferior_ptid); if (print_inferior_events) @@ -5804,10 +5804,10 @@ extended_remote_target::attach (const char *args, int from_tty) if (exec_file) printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file, - target_pid_to_str (pid_to_ptid (pid))); + target_pid_to_str (ptid_t (pid))); else printf_unfiltered (_("Attaching to %s\n"), - target_pid_to_str (pid_to_ptid (pid))); + target_pid_to_str (ptid_t (pid))); gdb_flush (gdb_stdout); } @@ -5828,19 +5828,19 @@ extended_remote_target::attach (const char *args, int from_tty) } else if (strcmp (rs->buf, "OK") != 0) error (_("Attaching to %s failed with: %s"), - target_pid_to_str (pid_to_ptid (pid)), + target_pid_to_str (ptid_t (pid)), rs->buf); break; case PACKET_UNKNOWN: error (_("This target does not support attaching to a process")); default: error (_("Attaching to %s failed"), - target_pid_to_str (pid_to_ptid (pid))); + target_pid_to_str (ptid_t (pid))); } set_current_inferior (remote_add_inferior (0, pid, 1, 0)); - inferior_ptid = pid_to_ptid (pid); + inferior_ptid = ptid_t (pid); if (target_is_non_stop_p ()) { @@ -5853,7 +5853,7 @@ extended_remote_target::attach (const char *args, int from_tty) if (thread) inferior_ptid = thread->ptid; else - inferior_ptid = pid_to_ptid (pid); + inferior_ptid = ptid_t (pid); /* Invalidate our notion of the remote current thread. */ record_currthread (rs, minus_one_ptid); @@ -6575,7 +6575,7 @@ remote_target::commit_resume () { if (get_remote_inferior (inf)->may_wildcard_vcont) { - vcont_builder.push_action (pid_to_ptid (inf->pid), + vcont_builder.push_action (ptid_t (inf->pid), false, GDB_SIGNAL_0); } } @@ -7530,7 +7530,7 @@ Packet: '%s'\n"), } else error (_("unknown stop reply packet: %s"), buf); - event->ptid = pid_to_ptid (pid); + event->ptid = ptid_t (pid); } break; case 'N': |