inf-ptrace.c: use ptid_get_pid when resuming all threads
In this case, we want to resume the entire process and not an individual thread. gdb/ 2015-03-03 Pedro Alves <palves@redhat.com> * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace. Use ptid_get_pid to get the overall process id when resuming all threads.
This commit is contained in:
parent
a64c9f7b85
commit
c1593e4fa9
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2015-03-03 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
|
||||
Use ptid_get_pid to get the overall process id when resuming all
|
||||
threads.
|
||||
|
||||
2015-03-03 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
|
||||
|
|
|
@ -314,13 +314,12 @@ inf_ptrace_resume (struct target_ops *ops,
|
|||
ptid_t ptid, int step, enum gdb_signal signal)
|
||||
{
|
||||
pid_t pid;
|
||||
|
||||
int request;
|
||||
|
||||
if (ptid_equal (minus_one_ptid, ptid))
|
||||
/* Resume all threads. Traditionally ptrace() only supports
|
||||
single-threaded processes, so simply resume the inferior. */
|
||||
pid = get_ptrace_pid (inferior_ptid);
|
||||
pid = ptid_get_pid (inferior_ptid);
|
||||
else
|
||||
pid = get_ptrace_pid (ptid);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue