diff options
author | Pedro Alves <palves@redhat.com> | 2008-09-08 21:33:25 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-09-08 21:33:25 +0000 |
commit | 617fd3b510ba316db1303cfcc77ac598209a8cb7 (patch) | |
tree | c752c53bd5e9bb7f9875a02a6b64372f313a1e5d /gdb/i386gnu-nat.c | |
parent | 2689673f4559834c475fde6c1638a0b9a064d1f4 (diff) | |
download | gdb-617fd3b510ba316db1303cfcc77ac598209a8cb7.zip gdb-617fd3b510ba316db1303cfcc77ac598209a8cb7.tar.gz gdb-617fd3b510ba316db1303cfcc77ac598209a8cb7.tar.bz2 |
Use ptid_t.tid to store thread ids instead of ptid_t.pid.
* gnu-nat.c (inf_validate_procs): If this is the first time we're
seeing a thread id, extend the main thread's ptid. If we still
have pending execs, don't be verbose about new threads.
(gnu_wait, gnu_resume, gnu_attach, gnu_thread_alive)
(gnu_pid_to_str, cur_thread, sig_thread_cmd): Adjust.
* i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers):
Adjust.
Diffstat (limited to 'gdb/i386gnu-nat.c')
-rw-r--r-- | gdb/i386gnu-nat.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gdb/i386gnu-nat.c b/gdb/i386gnu-nat.c index 564ace6..6545d08 100644 --- a/gdb/i386gnu-nat.c +++ b/gdb/i386gnu-nat.c @@ -118,10 +118,11 @@ gnu_fetch_registers (struct regcache *regcache, int regno) /* Make sure we know about new threads. */ inf_update_procs (current_inferior); - thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid)); + thread = inf_tid_to_thread (current_inferior, + ptid_get_tid (inferior_ptid)); if (!thread) - error (_("Can't fetch registers from thread %d: No such thread"), - PIDGET (inferior_ptid)); + error (_("Can't fetch registers from thread %s: No such thread"), + target_pid_to_str (inferior_ptid)); if (regno < I386_NUM_GREGS || regno == -1) { @@ -209,10 +210,11 @@ gnu_store_registers (struct regcache *regcache, int regno) /* Make sure we know about new threads. */ inf_update_procs (current_inferior); - thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid)); + thread = inf_tid_to_thread (current_inferior, + ptid_get_tid (inferior_ptid)); if (!thread) - error (_("Couldn't store registers into thread %d: No such thread"), - PIDGET (inferior_ptid)); + error (_("Couldn't store registers into thread %s: No such thread"), + target_pid_to_str (inferior_ptid)); if (regno < I386_NUM_GREGS || regno == -1) { |