builtin-report.c (46656ac7fb3252f8a3db29b18638e0e8067849ba) builtin-report.c (2c46dbb517a10b18d459e6ceffefde5bfb290cf6)
1/*
2 * builtin-report.c
3 *
4 * Builtin report command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
8#include "builtin.h"

--- 253 unchanged lines hidden (view full) ---

262static struct perf_event_ops event_ops = {
263 .sample = process_sample_event,
264 .mmap = event__process_mmap,
265 .comm = event__process_comm,
266 .exit = event__process_task,
267 .fork = event__process_task,
268 .lost = event__process_lost,
269 .read = process_read_event,
1/*
2 * builtin-report.c
3 *
4 * Builtin report command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
8#include "builtin.h"

--- 253 unchanged lines hidden (view full) ---

262static struct perf_event_ops event_ops = {
263 .sample = process_sample_event,
264 .mmap = event__process_mmap,
265 .comm = event__process_comm,
266 .exit = event__process_task,
267 .fork = event__process_task,
268 .lost = event__process_lost,
269 .read = process_read_event,
270 .attr = event__process_attr,
270};
271
272extern volatile int session_done;
273
274static void sig_handler(int sig __attribute__((__unused__)))
275{
276 session_done = 1;
277}

--- 226 unchanged lines hidden ---
271};
272
273extern volatile int session_done;
274
275static void sig_handler(int sig __attribute__((__unused__)))
276{
277 session_done = 1;
278}

--- 226 unchanged lines hidden ---