gdb/
authorYao Qi <yao@codesourcery.com>
Tue, 5 Mar 2013 14:23:23 +0000 (14:23 +0000)
committerYao Qi <yao@codesourcery.com>
Tue, 5 Mar 2013 14:23:23 +0000 (14:23 +0000)
* cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
parameter VAR's type from "unsigned int" to "int".
* command.h (var_zuinteger_unlimited): Update its comments.
(add_setshow_zuinteger_unlimited_cmd): Update the declaration.

gdb/ChangeLog
gdb/cli/cli-decode.c
gdb/command.h

index d712128a09f133fb81c6d2179cbb1d9b66438407..51716987b573eaa2e32c11f932d7d9e83b688c25 100644 (file)
@@ -1,3 +1,10 @@
+2013-03-05  Yao Qi  <yao@codesourcery.com>
+
+       * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
+       parameter VAR's type from "unsigned int" to "int".
+       * command.h (var_zuinteger_unlimited): Update its comments.
+       (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
+
 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
 
        * NEWS: Mention new target x86_64-*-cygwin*.
index 49ccef3f223a333909e9d2cb979d61b67f7c98bd..a8f7747ea6e71a9294e00ed954b1e8d40f3865b9 100644 (file)
@@ -708,7 +708,7 @@ add_setshow_zinteger_cmd (char *name, enum command_class class,
 void
 add_setshow_zuinteger_unlimited_cmd (char *name,
                                     enum command_class class,
-                                    unsigned int *var,
+                                    int *var,
                                     const char *set_doc,
                                     const char *show_doc,
                                     const char *help_doc,
index 17662b45a649d81df7c36d3f31910c8dab0f309c..a25fe04090a78ddfd332c6476d5b29799d3c7447 100644 (file)
@@ -99,8 +99,9 @@ typedef enum var_types
     /* ZeroableUnsignedInteger.  *VAR is an unsigned int.  Zero really
        means zero.  */
     var_zuinteger,
-    /* ZeroableUnsignedInteger with unlimited value.  *VAR is an unsigned
-       int, but its range is [0, INT_MAX].  -1 stands for unlimited.  */
+    /* ZeroableUnsignedInteger with unlimited value.  *VAR is an int,
+       but its range is [0, INT_MAX].  -1 stands for unlimited and
+       other negative numbers are not allowed.  */
     var_zuinteger_unlimited,
     /* Enumerated type.  Can only have one of the specified values.
        *VAR is a char pointer to the name of the element that we
@@ -361,7 +362,7 @@ extern void add_setshow_zuinteger_cmd (char *name,
 extern void
   add_setshow_zuinteger_unlimited_cmd (char *name,
                                       enum command_class class,
-                                      unsigned int *var,
+                                      int *var,
                                       const char *set_doc,
                                       const char *show_doc,
                                       const char *help_doc,