* remote-mips.c: Clean up comment and extraneous semicolon
authorMark Alexander <marka@cygnus>
Thu, 27 Mar 1997 22:25:51 +0000 (22:25 +0000)
committerMark Alexander <marka@cygnus>
Thu, 27 Mar 1997 22:25:51 +0000 (22:25 +0000)
for mips_monitor_prompt variable.

gdb/ChangeLog
gdb/remote-mips.c

index 448a64500a90bb4c2359bd19afd003a91d880069..31d622fd4fd367edcdbdd0fea7ef26aca4fd52eb 100644 (file)
@@ -1,3 +1,8 @@
+Thu Mar 27 14:21:46 1997  Mark Alexander  <marka@cygnus.com>
+
+       * remote-mips.c: Clean up comment and extraneous semicolon
+       for mips_monitor_prompt variable.
+
 Thu Mar 27 12:46:58 1997  Mark Alexander  <marka@cygnus.com>
 
        * remote-mips.c: Add `set monitor-prompt' command.
index 1b3dc44d4f1f4dddb37895e3fdd67fff5952d5e1..7434b21a4247348b04a37694187c86cc4c352fb6 100644 (file)
@@ -301,18 +301,19 @@ enum mips_monitor_type {
 };
 static enum mips_monitor_type mips_monitor = MON_LAST;
 
-/* The default monitor prompt text: */
+/* The monitor prompt text.  If the user sets the PMON prompt
+   to some new value, the GDB `set monitor-prompt' command must also
+   be used to inform GDB about the expected prompt.  Otherwise, GDB
+   will not be able to connect to PMON in mips_initialize().
+   If the `set monitor-prompt' command is not used, the expected
+   default prompt will be set according the target:
+       target          prompt
+       -----           -----
+       pmon            PMON> 
+       ddb             NEC010>
+       lsi             PMON>
+*/
 static char *mips_monitor_prompt;
-;
-/* For the Cogent PMON world this is still not ideal. The default
-   prompt is "PMON> ", unfortunately the user can change the prompt
-   and the new prompt will survive over a power-cycle (EEPROM). This
-   means that the code should really force the monitor prompt to a
-   known value as the very first action, and that the
-   "mips_monitor_prompt" support is not needed... since the prompt
-   could be explicitly set to TARGET_MONITOR_PROMPT (even though it
-   may be the prompt for a different monitor). However, this will
-   require changing the mips_initialize reset sequence. (TODO) */
 
 /* Set to 1 if the target is open.  */
 static int mips_is_open;