gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Sun, 28 Aug 2011 20:39:29 +0000 (20:39 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Sun, 28 Aug 2011 20:39:29 +0000 (20:39 +0000)
Code cleanup - make mi_opt const.
* mi/mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Make
opts const.
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
* mi/mi-cmd-env.c (mi_cmd_env_path): Likewise.
(mi_cmd_env_dir): Likewise.
* mi/mi-cmd-target.c (mi_cmd_target_file_get): Likewise.
(mi_cmd_target_file_put): Likewise.
* mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
* mi/mi-cmd-var.c (mi_cmd_var_evaluate_expression): Likewise.
* mi/mi-getopt.c (mi_getopt): Make opts and opt const.
(mi_valid_noargs): Make opts const.
* mi/mi-getopt.h (mi_getopt): Make opts and opt const.
* mi/mi-main.c (mi_cmd_list_thread_groups): Make opts const.
(mi_cmd_data_read_memory): Likewise.
(mi_cmd_data_read_memory_bytes): Likewise.
(mi_cmd_data_write_memory): Likewise.

gdb/ChangeLog
gdb/mi/mi-cmd-break.c
gdb/mi/mi-cmd-disas.c
gdb/mi/mi-cmd-env.c
gdb/mi/mi-cmd-target.c
gdb/mi/mi-cmd-var.c
gdb/mi/mi-getopt.c
gdb/mi/mi-getopt.h
gdb/mi/mi-main.c

index 896e16d5587ad319e4c81ea8f8ed283e3d6aa1a9..6e77fcc89f598f85e121e5e78f1af5a6bd25508e 100644 (file)
@@ -1,3 +1,23 @@
+2011-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Code cleanup - make mi_opt const.
+       * mi/mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Make
+       opts const.
+       * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
+       * mi/mi-cmd-env.c (mi_cmd_env_path): Likewise.
+       (mi_cmd_env_dir): Likewise.
+       * mi/mi-cmd-target.c (mi_cmd_target_file_get): Likewise.
+       (mi_cmd_target_file_put): Likewise.
+       * mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
+       * mi/mi-cmd-var.c (mi_cmd_var_evaluate_expression): Likewise.
+       * mi/mi-getopt.c (mi_getopt): Make opts and opt const.
+       (mi_valid_noargs): Make opts const.
+       * mi/mi-getopt.h (mi_getopt): Make opts and opt const.
+       * mi/mi-main.c (mi_cmd_list_thread_groups): Make opts const.
+       (mi_cmd_data_read_memory): Likewise.
+       (mi_cmd_data_read_memory_bytes): Likewise.
+       (mi_cmd_data_write_memory): Likewise.
+
 2011-08-26  Matt Rice  <ratmice@gmail.com>
 
        * solib-sunos.c (allocate_rt_common_objfile): Add missing arguments to
index 2c9d16b9c7cff64d20ffacb6b07b7696f4841dbf..b3bd5da4db9909d605298fb6b93b525caaa73b28 100644 (file)
@@ -84,7 +84,7 @@ mi_cmd_break_insert (char *command, char **argv, int argc)
       IGNORE_COUNT_OPT, THREAD_OPT, PENDING_OPT, DISABLE_OPT,
       TRACEPOINT_OPT,
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"h", HARDWARE_OPT, 0},
     {"t", TEMP_OPT, 0},
@@ -221,7 +221,7 @@ mi_cmd_break_watch (char *command, char **argv, int argc)
     {
       READ_OPT, ACCESS_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"r", READ_OPT, 0},
     {"a", ACCESS_OPT, 0},
index 6cc0a83099355b2258445dda49ea90a0d05facba..c2e8265f31f51185adee906d80211d7f1da7ff08 100644 (file)
@@ -83,7 +83,7 @@ mi_cmd_disassemble (char *command, char **argv, int argc)
   {
     FILE_OPT, LINE_OPT, NUM_OPT, START_OPT, END_OPT
   };
-  static struct mi_opt opts[] = {
+  static const struct mi_opt opts[] = {
     {"f", FILE_OPT, 1},
     {"l", LINE_OPT, 1},
     {"n", NUM_OPT, 1},
index 9676e836d8f751303e3fad269e28af50590beddd..d9e5088cddafbacf1803acef14ce3fe3568e295f 100644 (file)
@@ -125,7 +125,7 @@ mi_cmd_env_path (char *command, char **argv, int argc)
     {
       RESET_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"r", RESET_OPT, 0},
     { 0, 0, 0 }
@@ -197,7 +197,7 @@ mi_cmd_env_dir (char *command, char **argv, int argc)
     {
       RESET_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"r", RESET_OPT, 0},
     { 0, 0, 0 }
index 295a38bd4b16c61cac9d3588578a2d10553abe9e..14b22deb24c36a08a92c36567855ddc9d731fcdb 100644 (file)
@@ -29,7 +29,7 @@ mi_cmd_target_file_get (char *command, char **argv, int argc)
   int optind = 0;
   char *optarg;
   const char *remote_file, *local_file;
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     { 0, 0, 0 }
   };
@@ -53,7 +53,7 @@ mi_cmd_target_file_put (char *command, char **argv, int argc)
   int optind = 0;
   char *optarg;
   const char *remote_file, *local_file;
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     { 0, 0, 0 }
   };
@@ -77,7 +77,7 @@ mi_cmd_target_file_delete (char *command, char **argv, int argc)
   int optind = 0;
   char *optarg;
   const char *remote_file;
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     { 0, 0, 0 }
   };
index c50f8631ed422f802d7de8732ceb9aec80549c5f..16fbb853f618fcae1b5ef66d6f0710c372586845 100644 (file)
@@ -561,7 +561,7 @@ mi_cmd_var_evaluate_expression (char *command, char **argv, int argc)
     {
       OP_FORMAT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"f", OP_FORMAT, 1},
     { 0, 0, 0 }
index 81b833a30be17ad9b5013c1bc4d301bbdba4c7d9..1748688a7570db1e5901ab70412d5bfeb90fbf6b 100644 (file)
 int
 mi_getopt (const char *prefix,
           int argc, char **argv,
-          struct mi_opt *opts,
+          const struct mi_opt *opts,
           int *optind, char **optarg)
 {
   char *arg;
-  struct mi_opt *opt;
+  const struct mi_opt *opt;
 
   /* We assume that argv/argc are ok. */
   if (*optind > argc || *optind < 0)
@@ -80,7 +80,7 @@ mi_valid_noargs (const char *prefix, int argc, char **argv)
 {
   int optind = 0;
   char *optarg;
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     { 0, 0, 0 }
   };
index a34a354e45d7e074aa4640c1d68bd07a5a27ac10..10b290686d1544acc3dcbb87628685f2a357cb7e 100644 (file)
@@ -42,7 +42,7 @@
 
 struct mi_opt;
 extern int mi_getopt (const char *prefix, int argc, char **argv,
-                     struct mi_opt *opt, int *optind, char **optarg);
+                     const struct mi_opt *opt, int *optind, char **optarg);
 
 /* The option list.  Terminated by NAME==NULL.  ARG_P that the option
    requires an argument.  INDEX is returned to identify th option. */
index 04a1c97910368f7e6497a480df46cd1c05085225..7a9b4db80e247417fbd886d7c9666d71db834bde 100644 (file)
@@ -799,7 +799,7 @@ mi_cmd_list_thread_groups (char *command, char **argv, int argc)
     {
       AVAILABLE_OPT, RECURSE_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"-available", AVAILABLE_OPT, 0},
     {"-recurse", RECURSE_OPT, 1},
@@ -1307,7 +1307,7 @@ mi_cmd_data_read_memory (char *command, char **argv, int argc)
     {
       OFFSET_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"o", OFFSET_OPT, 1},
     { 0, 0, 0 }
@@ -1493,7 +1493,7 @@ mi_cmd_data_read_memory_bytes (char *command, char **argv, int argc)
     {
       OFFSET_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"o", OFFSET_OPT, 1},
     { 0, 0, 0 }
@@ -1594,7 +1594,7 @@ mi_cmd_data_write_memory (char *command, char **argv, int argc)
     {
       OFFSET_OPT
     };
-  static struct mi_opt opts[] =
+  static const struct mi_opt opts[] =
   {
     {"o", OFFSET_OPT, 1},
     { 0, 0, 0 }