Append NULL to enum based commands follow-fork and scheduler-locking.
authorAndrew Cagney <cagney@redhat.com>
Thu, 20 Apr 2000 11:00:34 +0000 (11:00 +0000)
committerAndrew Cagney <cagney@redhat.com>
Thu, 20 Apr 2000 11:00:34 +0000 (11:00 +0000)
gdb/ChangeLog
gdb/infrun.c

index b31feae9dab17d21c428797013b4a0990a5e659b..d754129b491995295eb9ede65c30501a93cfa0ed 100644 (file)
@@ -1,3 +1,11 @@
+Thu Apr 20 18:54:15 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       From Daniel Berlin <dan@cgsoftware.com> and Tim Mooney
+       <mooney@dogbert.cc.ndsu.nodak.edu>:
+       * infrun.c (follow_fork_mode_kind_names): NULL terminate
+       array. Re-indent.
+       (scheduler_enums): Ditto.
+
 Mon Apr 17 13:37:10 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * gdbarch.sh: Make multi-arch variable defaults, defaults for non-
index 280f01e4eb5201fdcac80497fbe223d5412f7273..8bf3012a6678d8b6e73453c9daecd005937c0a53 100644 (file)
@@ -436,13 +436,13 @@ static int follow_vfork_when_exec;
 
 static char *follow_fork_mode_kind_names[] =
 {
-/* ??rehrauer:  The "both" option is broken, by what may be a 10.20
-   kernel problem.  It's also not terribly useful without a GUI to
-   help the user drive two debuggers.  So for now, I'm disabling
-   the "both" option.
-   "parent", "child", "both", "ask" };
- */
-  "parent", "child", "ask"};
+  /* ??rehrauer: The "both" option is broken, by what may be a 10.20
+     kernel problem.  It's also not terribly useful without a GUI to
+     help the user drive two debuggers.  So for now, I'm disabling the
+     "both" option. */
+  /* "parent", "child", "both", "ask" */
+  "parent", "child", "ask", NULL
+};
 
 static char *follow_fork_mode_string = NULL;
 \f
@@ -762,7 +762,12 @@ static char schedlock_on[] = "on";
 static char schedlock_step[] = "step";
 static char *scheduler_mode = schedlock_off;
 static char *scheduler_enums[] =
-{schedlock_off, schedlock_on, schedlock_step};
+{
+  schedlock_off,
+  schedlock_on,
+  schedlock_step,
+  NULL
+};
 
 static void
 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)