Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Unified Diff: gdb/mi/mi-getopt.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/mi/mi-getopt.h ('k') | gdb/mi/mi-interp.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/mi/mi-getopt.c
diff --git a/gdb/mi/mi-getopt.c b/gdb/mi/mi-getopt.c
index 2e288a29c0935199c1b00eb02935d76dabf20296..3a7c6a300d258f24ee9b1071762214c0aa6bfb78 100644
--- a/gdb/mi/mi-getopt.c
+++ b/gdb/mi/mi-getopt.c
@@ -25,49 +25,49 @@ int
mi_getopt (const char *prefix,
int argc, char **argv,
const struct mi_opt *opts,
- int *optind, char **optarg)
+ int *oind, char **oarg)
{
char *arg;
const struct mi_opt *opt;
- /* We assume that argv/argc are ok. */
- if (*optind > argc || *optind < 0)
+ /* We assume that argv/argc are ok. */
+ if (*oind > argc || *oind < 0)
internal_error (__FILE__, __LINE__,
- _("mi_getopt_long: optind out of bounds"));
- if (*optind == argc)
+ _("mi_getopt_long: oind out of bounds"));
+ if (*oind == argc)
return -1;
- arg = argv[*optind];
+ arg = argv[*oind];
/* ``--''? */
if (strcmp (arg, "--") == 0)
{
- *optind += 1;
- *optarg = NULL;
+ *oind += 1;
+ *oarg = NULL;
return -1;
}
- /* End of option list. */
+ /* End of option list. */
if (arg[0] != '-')
{
- *optarg = NULL;
+ *oarg = NULL;
return -1;
}
- /* Look the option up. */
+ /* Look the option up. */
for (opt = opts; opt->name != NULL; opt++)
{
if (strcmp (opt->name, arg + 1) != 0)
continue;
if (opt->arg_p)
{
- /* A non-simple optarg option. */
- if (argc < *optind + 2)
+ /* A non-simple oarg option. */
+ if (argc < *oind + 2)
error (_("%s: Option %s requires an argument"), prefix, arg);
- *optarg = argv[(*optind) + 1];
- *optind = (*optind) + 2;
+ *oarg = argv[(*oind) + 1];
+ *oind = (*oind) + 2;
return opt->index;
}
else
{
- *optarg = NULL;
- *optind = (*optind) + 1;
+ *oarg = NULL;
+ *oind = (*oind) + 1;
return opt->index;
}
}
@@ -77,14 +77,14 @@ mi_getopt (const char *prefix,
int
mi_valid_noargs (const char *prefix, int argc, char **argv)
{
- int optind = 0;
- char *optarg;
+ int oind = 0;
+ char *oarg;
static const struct mi_opt opts[] =
- {
- { 0, 0, 0 }
- };
+ {
+ { 0, 0, 0 }
+ };
- if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) == -1)
+ if (mi_getopt (prefix, argc, argv, opts, &oind, &oarg) == -1)
return 1;
else
return 0;
« no previous file with comments | « gdb/mi/mi-getopt.h ('k') | gdb/mi/mi-interp.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698