builtin-ftrace.c (a43783aeec5fac8ef372ff8c0a5bbb3056fc0604) builtin-ftrace.c (20a9ed280dde6292c529dfdaaf9ce743ef71bb1f)
1/*
2 * builtin-ftrace.c
3 *
4 * Copyright (c) 2013 LG Electronics, Namhyung Kim <namhyung@kernel.org>
5 *
6 * Released under the GPL v2.
7 */
8
9#include "builtin.h"
10#include "perf.h"
11
12#include <errno.h>
13#include <unistd.h>
14#include <signal.h>
15#include <fcntl.h>
16
17#include "debug.h"
18#include <subcmd/parse-options.h>
1/*
2 * builtin-ftrace.c
3 *
4 * Copyright (c) 2013 LG Electronics, Namhyung Kim <namhyung@kernel.org>
5 *
6 * Released under the GPL v2.
7 */
8
9#include "builtin.h"
10#include "perf.h"
11
12#include <errno.h>
13#include <unistd.h>
14#include <signal.h>
15#include <fcntl.h>
16
17#include "debug.h"
18#include <subcmd/parse-options.h>
19#include <api/fs/tracing_path.h>
19#include "evlist.h"
20#include "target.h"
21#include "cpumap.h"
22#include "thread_map.h"
23#include "util/config.h"
24
25
26#define DEFAULT_TRACER "function_graph"

--- 340 unchanged lines hidden ---
20#include "evlist.h"
21#include "target.h"
22#include "cpumap.h"
23#include "thread_map.h"
24#include "util/config.h"
25
26
27#define DEFAULT_TRACER "function_graph"

--- 340 unchanged lines hidden ---