diff options
author | Tom Tromey <tom@tromey.com> | 2018-06-11 12:10:09 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-03 11:36:43 -0600 |
commit | e38504b39279fa86cbb2c4a45ab8ec34e3aef90b (patch) | |
tree | 16f941e0132d751ed93e793e8ac078418f656938 /gdb/gdbserver/linux-low.c | |
parent | e99b03dcf42606425eab8bd12eadb8aa4007f35a (diff) | |
download | fsf-binutils-gdb-e38504b39279fa86cbb2c4a45ab8ec34e3aef90b.zip fsf-binutils-gdb-e38504b39279fa86cbb2c4a45ab8ec34e3aef90b.tar.gz fsf-binutils-gdb-e38504b39279fa86cbb2c4a45ab8ec34e3aef90b.tar.bz2 |
Remove ptid_get_lwp
This removes ptid_get_lwp in favor of calling the ptid_t::lwp method.
gdb/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* common/ptid.c (ptid_get_lwp): Remove.
* common/ptid.h (ptid_get_lwp): Don't declare.
* aarch64-linux-nat.c: Update.
* ada-tasks.c: Update.
* aix-thread.c: Update.
* amd64-linux-nat.c: Update.
* arm-linux-nat.c: Update.
* corelow.c: Update.
* fbsd-nat.c: Update.
* fbsd-tdep.c: Update.
* gnu-nat.c: Update.
* i386-cygwin-tdep.c: Update.
* i386-gnu-nat.c: Update.
* i386-linux-nat.c: Update.
* ia64-linux-nat.c: Update.
* inf-ptrace.c: Update.
* infrun.c: Update.
* linux-fork.c: Update.
* linux-nat.c: Update.
* linux-tdep.c: Update.
* linux-thread-db.c: Update.
* mips-linux-nat.c: Update.
* nat/aarch64-linux-hw-point.c: Update.
* nat/aarch64-linux.c: Update.
* nat/linux-btrace.c: Update.
* nat/linux-osdata.c: Update.
* nat/linux-procfs.c: Update.
* nat/x86-linux-dregs.c: Update.
* obsd-nat.c: Update.
* ppc-fbsd-nat.c: Update.
* ppc-linux-nat.c: Update.
* procfs.c: Update.
* python/py-infthread.c: Update.
* ravenscar-thread.c: Update.
* remote.c: Update.
* s390-linux-nat.c: Update.
* sol-thread.c: Update.
* sol2-tdep.c: Update.
* spu-linux-nat.c: Update.
* x86-linux-nat.c: Update.
* xtensa-linux-nat.c: Update.
gdb/gdbserver/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* linux-low.c: Update.
* linux-mips-low.c: Update.
* lynx-low.c: Update.
* nto-low.c: Update.
* remote-utils.c: Update.
* server.c: Update.
* spu-low.c: Update.
* target.c: Update.
* thread-db.c: Update.
Diffstat (limited to 'gdb/gdbserver/linux-low.c')
-rw-r--r-- | gdb/gdbserver/linux-low.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 99a7e16..a290b5b 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -529,7 +529,7 @@ handle_extended_wait (struct lwp_info **orig_event_lwp, int wstat) { debug_printf ("HEW: Got fork event from LWP %ld, " "new child is %d\n", - ptid_get_lwp (ptid_of (event_thr)), + ptid_of (event_thr).lwp (), ptid.pid ()); } @@ -1052,7 +1052,7 @@ int linux_attach_lwp (ptid_t ptid) { struct lwp_info *new_lwp; - int lwpid = ptid_get_lwp (ptid); + int lwpid = ptid.lwp (); if (ptrace (PTRACE_ATTACH, lwpid, (PTRACE_TYPE_ARG3) 0, (PTRACE_TYPE_ARG4) 0) != 0) @@ -1140,7 +1140,7 @@ attach_proc_task_lwp_callback (ptid_t ptid) /* Is this a new thread? */ if (find_thread_ptid (ptid) == NULL) { - int lwpid = ptid_get_lwp (ptid); + int lwpid = ptid.lwp (); int err; if (debug_threads) @@ -1324,7 +1324,7 @@ kill_wait_lwp (struct lwp_info *lwp) { struct thread_info *thr = get_lwp_thread (lwp); int pid = ptid_of (thr).pid (); - int lwpid = ptid_get_lwp (ptid_of (thr)); + int lwpid = ptid_of (thr).lwp (); int wstat; int res; @@ -4548,7 +4548,7 @@ linux_set_resume_request (thread_info *thread, thread_resume *resume, size_t n) of PID'. */ || (ptid.pid () == pid_of (thread) && (ptid_is_pid (ptid) - || ptid_get_lwp (ptid) == -1))) + || ptid.lwp () == -1))) { if (resume[ndx].kind == resume_stop && thread->last_resume_kind == resume_stop) |