aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2001-05-04 04:15:33 +0000
committerKevin Buettner <kevinb@redhat.com>2001-05-04 04:15:33 +0000
commit39f770628a4eaf018fec8d55684bf2ec16ada9cc (patch)
tree69027cfb7df2ecc521ab2cc1d25a7dd6cbe56632 /gdb/top.c
parentb1af961c8433821f61dd1849cff9eb9a8bb974e8 (diff)
downloadfsf-binutils-gdb-39f770628a4eaf018fec8d55684bf2ec16ada9cc.zip
fsf-binutils-gdb-39f770628a4eaf018fec8d55684bf2ec16ada9cc.tar.gz
fsf-binutils-gdb-39f770628a4eaf018fec8d55684bf2ec16ada9cc.tar.bz2
Phase 1 of the ptid_t changes.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 77d6c6a..be4504d 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -341,7 +341,8 @@ void (*memory_changed_hook) (CORE_ADDR addr, int len);
/* Called when going to wait for the target. Usually allows the GUI to run
while waiting for target events. */
-int (*target_wait_hook) (int pid, struct target_waitstatus * status);
+ptid_t (*target_wait_hook) (ptid_t ptid,
+ struct target_waitstatus * status);
/* Used by UI as a wrapper around command execution. May do various things
like enabling/disabling buttons, etc... */
@@ -1709,7 +1710,7 @@ set_prompt (char *s)
int
quit_confirm (void)
{
- if (inferior_pid != 0 && target_has_execution)
+ if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
{
char *s;
@@ -1746,7 +1747,7 @@ quit_force (char *args, int from_tty)
exit_code = (int) value_as_long (val);
}
- if (inferior_pid != 0 && target_has_execution)
+ if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
{
if (attach_flag)
target_detach (args, from_tty);