diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-01-27 13:31:39 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-02-06 16:00:38 +0300 |
commit | 4fed072609b8aae27eac7169033f762867a5ab4c (patch) | |
tree | ac3306d84addf8b26097c7d857fe18b1a148eff1 /tools/perf/util/thread.h | |
parent | af1db7f6b7323ab9f7beffe6028f421f4c398e7f (diff) | |
download | linux-4fed072609b8aae27eac7169033f762867a5ab4c.tar.xz |
perf srccode: Move struct definition from map.h to srccode.h
To reduce the header dependencies, since we already have a srccode.h
header, then there is where the 'struct srccode_state' should be, and
map.h, that is more widely used should have just a forward declaraion
of 'struct srccode_state'.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-64lrkjjaa7wlo1zi2gr5u3es@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/thread.h')
-rw-r--r-- | tools/perf/util/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/thread.h b/tools/perf/util/thread.h index f3c939150f90..856cf1a9040a 100644 --- a/tools/perf/util/thread.h +++ b/tools/perf/util/thread.h @@ -7,8 +7,8 @@ #include <linux/list.h> #include <unistd.h> #include <sys/types.h> +#include "srccode.h" #include "symbol.h" -#include "map.h" #include <strlist.h> #include <intlist.h> #include "rwsem.h" |