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/gdbserver/server.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/gdbserver/server.c')
-rw-r--r-- | gdb/gdbserver/server.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/gdbserver/server.c b/gdb/gdbserver/server.c index e4de426..c2f7287 100644 --- a/gdb/gdbserver/server.c +++ b/gdb/gdbserver/server.c @@ -308,7 +308,7 @@ attach_inferior (int pid) if (!non_stop) { - cs.last_ptid = mywait (pid_to_ptid (pid), &cs.last_status, 0, 0); + cs.last_ptid = mywait (ptid_t (pid), &cs.last_status, 0, 0); /* GDB knows to ignore the first SIGSTOP after attaching to a running process using the "attach" command, but this is different; it's @@ -1256,7 +1256,7 @@ handle_detach (char *own_buf) write_enn (own_buf); else { - discard_queued_stop_replies (pid_to_ptid (pid)); + discard_queued_stop_replies (ptid_t (pid)); write_ok (own_buf); if (extended_protocol || target_running ()) @@ -1266,7 +1266,7 @@ handle_detach (char *own_buf) and instead treat this like a normal program exit. */ cs.last_status.kind = TARGET_WAITKIND_EXITED; cs.last_status.value.integer = 0; - cs.last_ptid = pid_to_ptid (pid); + cs.last_ptid = ptid_t (pid); current_thread = NULL; } @@ -3081,7 +3081,7 @@ handle_v_kill (char *own_buf) { cs.last_status.kind = TARGET_WAITKIND_SIGNALLED; cs.last_status.value.sig = GDB_SIGNAL_KILL; - cs.last_ptid = pid_to_ptid (pid); + cs.last_ptid = ptid_t (pid); discard_queued_stop_replies (cs.last_ptid); write_ok (own_buf); return 1; @@ -3481,7 +3481,7 @@ kill_inferior_callback (process_info *process) int pid = process->pid; kill_inferior (pid); - discard_queued_stop_replies (pid_to_ptid (pid)); + discard_queued_stop_replies (ptid_t (pid)); } /* Call this when exiting gdbserver with possible inferiors that need @@ -3527,7 +3527,7 @@ detach_or_kill_for_exit (void) else kill_inferior (pid); - discard_queued_stop_replies (pid_to_ptid (pid)); + discard_queued_stop_replies (ptid_t (pid)); }); } |