Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 169474
b: refs/heads/master
c: 42e59d7
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Oct 6, 2009
1 parent e210188 commit d24211f
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 064739bc4b3d7f424b2f25547e6611bcf0132415
refs/heads/master: 42e59d7d19dc4b49feab2a860fd9a8ca3248c833
52 changes: 26 additions & 26 deletions trunk/tools/perf/builtin-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,43 +29,43 @@ static int fd[MAX_NR_CPUS][MAX_COUNTERS];

static long default_interval = 100000;

static int nr_cpus = 0;
static int nr_cpus = 0;
static unsigned int page_size;
static unsigned int mmap_pages = 128;
static int freq = 0;
static unsigned int mmap_pages = 128;
static int freq = 1000;
static int output;
static const char *output_name = "perf.data";
static int group = 0;
static unsigned int realtime_prio = 0;
static int raw_samples = 0;
static int system_wide = 0;
static int profile_cpu = -1;
static pid_t target_pid = -1;
static pid_t child_pid = -1;
static int inherit = 1;
static int force = 0;
static int append_file = 0;
static int call_graph = 0;
static int inherit_stat = 0;
static int no_samples = 0;
static int sample_address = 0;
static int multiplex = 0;
static int multiplex_fd = -1;

static long samples;
static int group = 0;
static unsigned int realtime_prio = 0;
static int raw_samples = 0;
static int system_wide = 0;
static int profile_cpu = -1;
static pid_t target_pid = -1;
static pid_t child_pid = -1;
static int inherit = 1;
static int force = 0;
static int append_file = 0;
static int call_graph = 0;
static int inherit_stat = 0;
static int no_samples = 0;
static int sample_address = 0;
static int multiplex = 0;
static int multiplex_fd = -1;

static long samples = 0;
static struct timeval last_read;
static struct timeval this_read;

static u64 bytes_written;
static u64 bytes_written = 0;

static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];

static int nr_poll;
static int nr_cpu;
static int nr_poll = 0;
static int nr_cpu = 0;

static int file_new = 1;
static int file_new = 1;

struct perf_header *header;
struct perf_header *header = NULL;

struct mmap_data {
int counter;
Expand Down
38 changes: 19 additions & 19 deletions trunk/tools/perf/builtin-top.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,26 +55,26 @@

static int fd[MAX_NR_CPUS][MAX_COUNTERS];

static int system_wide = 0;
static int system_wide = 0;

static int default_interval = 100000;

static int count_filter = 5;
static int print_entries = 15;
static int count_filter = 5;
static int print_entries = 15;

static int target_pid = -1;
static int inherit = 0;
static int profile_cpu = -1;
static int nr_cpus = 0;
static unsigned int realtime_prio = 0;
static int group = 0;
static int target_pid = -1;
static int inherit = 0;
static int profile_cpu = -1;
static int nr_cpus = 0;
static unsigned int realtime_prio = 0;
static int group = 0;
static unsigned int page_size;
static unsigned int mmap_pages = 16;
static int freq = 0;
static unsigned int mmap_pages = 16;
static int freq = 1000; /* 1 KHz */

static int delay_secs = 2;
static int zero;
static int dump_symtab;
static int delay_secs = 2;
static int zero = 0;
static int dump_symtab = 0;

/*
* Source
Expand All @@ -87,11 +87,11 @@ struct source_line {
struct source_line *next;
};

static char *sym_filter = NULL;
struct sym_entry *sym_filter_entry = NULL;
static int sym_pcnt_filter = 5;
static int sym_counter = 0;
static int display_weighted = -1;
static char *sym_filter = NULL;
struct sym_entry *sym_filter_entry = NULL;
static int sym_pcnt_filter = 5;
static int sym_counter = 0;
static int display_weighted = -1;

/*
* Symbols
Expand Down

0 comments on commit d24211f

Please sign in to comment.