diff options
Diffstat (limited to 'tools/perf/perf.c')
| -rw-r--r-- | tools/perf/perf.c | 27 | 
1 files changed, 1 insertions, 26 deletions
diff --git a/tools/perf/perf.c b/tools/perf/perf.c index 82bbe0ca858b..38cae4721583 100644 --- a/tools/perf/perf.c +++ b/tools/perf/perf.c @@ -39,14 +39,7 @@  #include <linux/string.h>  #include <linux/zalloc.h> -const char perf_usage_string[] = -	"perf [--version] [--help] [OPTIONS] COMMAND [ARGS]"; - -const char perf_more_info_string[] = -	"See 'perf help COMMAND' for more information on a specific command."; -  static int use_pager = -1; -const char *input_name;  struct cmd_struct {  	const char *cmd; @@ -218,7 +211,7 @@ static int handle_options(const char ***argv, int *argc, int *envchanged)  		if (!strcmp(cmd, "-vv")) {  			(*argv)[0] = "version"; -			version_verbose = 1; +			verbose = 1;  			break;  		} @@ -432,24 +425,6 @@ static int run_argv(int *argcp, const char ***argv)  	return 0;  } -static void pthread__block_sigwinch(void) -{ -	sigset_t set; - -	sigemptyset(&set); -	sigaddset(&set, SIGWINCH); -	pthread_sigmask(SIG_BLOCK, &set, NULL); -} - -void pthread__unblock_sigwinch(void) -{ -	sigset_t set; - -	sigemptyset(&set); -	sigaddset(&set, SIGWINCH); -	pthread_sigmask(SIG_UNBLOCK, &set, NULL); -} -  static int libperf_print(enum libperf_print_level level,  			 const char *fmt, va_list ap)  {  |