diff options
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r-- | tools/perf/builtin-top.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 4abdd9b646b3..40f24dd46ef4 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -57,7 +57,7 @@ | |||
57 | 57 | ||
58 | static int *fd[MAX_NR_CPUS][MAX_COUNTERS]; | 58 | static int *fd[MAX_NR_CPUS][MAX_COUNTERS]; |
59 | 59 | ||
60 | static int system_wide = 0; | 60 | static bool system_wide = false; |
61 | 61 | ||
62 | static int default_interval = 0; | 62 | static int default_interval = 0; |
63 | 63 | ||
@@ -68,18 +68,18 @@ static int target_pid = -1; | |||
68 | static int target_tid = -1; | 68 | static int target_tid = -1; |
69 | static pid_t *all_tids = NULL; | 69 | static pid_t *all_tids = NULL; |
70 | static int thread_num = 0; | 70 | static int thread_num = 0; |
71 | static int inherit = 0; | 71 | static bool inherit = false; |
72 | static int profile_cpu = -1; | 72 | static int profile_cpu = -1; |
73 | static int nr_cpus = 0; | 73 | static int nr_cpus = 0; |
74 | static unsigned int realtime_prio = 0; | 74 | static unsigned int realtime_prio = 0; |
75 | static int group = 0; | 75 | static bool group = false; |
76 | static unsigned int page_size; | 76 | static unsigned int page_size; |
77 | static unsigned int mmap_pages = 16; | 77 | static unsigned int mmap_pages = 16; |
78 | static int freq = 1000; /* 1 KHz */ | 78 | static int freq = 1000; /* 1 KHz */ |
79 | 79 | ||
80 | static int delay_secs = 2; | 80 | static int delay_secs = 2; |
81 | static int zero = 0; | 81 | static bool zero = false; |
82 | static int dump_symtab = 0; | 82 | static bool dump_symtab = false; |
83 | 83 | ||
84 | static bool hide_kernel_symbols = false; | 84 | static bool hide_kernel_symbols = false; |
85 | static bool hide_user_symbols = false; | 85 | static bool hide_user_symbols = false; |
@@ -854,7 +854,7 @@ static void handle_keypress(int c) | |||
854 | display_weighted = ~display_weighted; | 854 | display_weighted = ~display_weighted; |
855 | break; | 855 | break; |
856 | case 'z': | 856 | case 'z': |
857 | zero = ~zero; | 857 | zero = !zero; |
858 | break; | 858 | break; |
859 | default: | 859 | default: |
860 | break; | 860 | break; |
@@ -1335,7 +1335,7 @@ static const struct option options[] = { | |||
1335 | "display this many functions"), | 1335 | "display this many functions"), |
1336 | OPT_BOOLEAN('U', "hide_user_symbols", &hide_user_symbols, | 1336 | OPT_BOOLEAN('U', "hide_user_symbols", &hide_user_symbols, |
1337 | "hide user symbols"), | 1337 | "hide user symbols"), |
1338 | OPT_BOOLEAN('v', "verbose", &verbose, | 1338 | OPT_INCR('v', "verbose", &verbose, |
1339 | "be more verbose (show counter open errors, etc)"), | 1339 | "be more verbose (show counter open errors, etc)"), |
1340 | OPT_END() | 1340 | OPT_END() |
1341 | }; | 1341 | }; |