aboutsummaryrefslogtreecommitdiff
path: root/src/systemcmds/perf/perf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemcmds/perf/perf.c')
-rw-r--r--src/systemcmds/perf/perf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/systemcmds/perf/perf.c b/src/systemcmds/perf/perf.c
index a788dfc11..4ab92dde6 100644
--- a/src/systemcmds/perf/perf.c
+++ b/src/systemcmds/perf/perf.c
@@ -68,11 +68,13 @@ int perf_main(int argc, char *argv[])
if (strcmp(argv[1], "reset") == 0) {
perf_reset_all();
return 0;
+
} else if (strcmp(argv[1], "latency") == 0) {
perf_print_latency(0 /* stdout */);
fflush(stdout);
return 0;
}
+
printf("Usage: perf [reset | latency]\n");
return -1;
}