summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2006-09-25 05:39:52 +0000
committerNick Roberts <nickrob@snap.net.nz>2006-09-25 05:39:52 +0000
commit4fab7f752b52b443fd4a618729ce3a10513ffa17 (patch)
tree8ab0e7c7147a2540a60608beaa394adf34d89edb
parent4a80cf4c61169b34c48b8ad4cf045283dad6fe3c (diff)
downloadgdb-4fab7f752b52b443fd4a618729ce3a10513ffa17.tar.gz
Add note about entering commands while target is
running.
-rw-r--r--gdb/README.async12
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/README.async b/gdb/README.async
index bd8bfae8643..944917d9092 100644
--- a/gdb/README.async
+++ b/gdb/README.async
@@ -44,6 +44,18 @@ n
(actually it generates an extra &"n\n" and ^done but with
"-interpreter-exec console" it's identical.
+To enter a GDB command while the target is running GDB needs a separate
+terminal to the inferior. Currently only a few CLI commands can be entered
+e.g pwd see top.c. Most CLI commands report:
+
+ Cannot execute this command while the target is running.
+
+and all MI commands apart from -exec-interrupt (see mi-main.c) report:
+
+ Cannot execute command interpreter-exec while target running
+
+but this can easily be changed.
+
To help integration with HEAD I've re-instated the --async option so that
--noasync (the default) *should* run as on the trunk.