diff options
Diffstat (limited to 'tools/perf/util/parse-options.h')
-rw-r--r-- | tools/perf/util/parse-options.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/perf/util/parse-options.h b/tools/perf/util/parse-options.h index cbf0149cf221..d8dac8ac5f37 100644 --- a/tools/perf/util/parse-options.h +++ b/tools/perf/util/parse-options.h | |||
@@ -140,6 +140,11 @@ extern int parse_options(int argc, const char **argv, | |||
140 | const struct option *options, | 140 | const struct option *options, |
141 | const char * const usagestr[], int flags); | 141 | const char * const usagestr[], int flags); |
142 | 142 | ||
143 | extern int parse_options_subcommand(int argc, const char **argv, | ||
144 | const struct option *options, | ||
145 | const char *const subcommands[], | ||
146 | const char *usagestr[], int flags); | ||
147 | |||
143 | extern NORETURN void usage_with_options(const char * const *usagestr, | 148 | extern NORETURN void usage_with_options(const char * const *usagestr, |
144 | const struct option *options); | 149 | const struct option *options); |
145 | 150 | ||
@@ -148,7 +153,8 @@ extern NORETURN void usage_with_options(const char * const *usagestr, | |||
148 | enum { | 153 | enum { |
149 | PARSE_OPT_HELP = -1, | 154 | PARSE_OPT_HELP = -1, |
150 | PARSE_OPT_DONE, | 155 | PARSE_OPT_DONE, |
151 | PARSE_OPT_LIST, | 156 | PARSE_OPT_LIST_OPTS, |
157 | PARSE_OPT_LIST_SUBCMDS, | ||
152 | PARSE_OPT_UNKNOWN, | 158 | PARSE_OPT_UNKNOWN, |
153 | }; | 159 | }; |
154 | 160 | ||