diff options
author | Greg Hackmann <[email protected]> | 2019-05-14 15:45:25 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2019-05-14 19:52:51 -0700 |
commit | 826eba0d77bc74c4d1c611374b76abfe251e8538 (patch) | |
tree | 14c87fc4cce352127d798701051f27b96cd6cdf3 /kernel/gcov/gcov.h | |
parent | ce528c4c20f94b48781a9bb9e32435d2b9782995 (diff) |
gcov: clang: move common GCC code into gcc_base.c
Patch series "gcov: add Clang support", v4.
This patch (of 3):
base.c contains a few callbacks specific to GCC's gcov implementation.
Move these into their own module in preparation for Clang support.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Greg Hackmann <[email protected]>
Signed-off-by: Nick Desaulniers <[email protected]>
Signed-off-by: Tri Vo <[email protected]>
Tested-by: Trilok Soni <[email protected]>
Tested-by: Prasad Sodagudi <[email protected]>
Tested-by: Tri Vo <[email protected]>
Reviewed-by: Peter Oberparleiter <[email protected]>
Cc: Daniel Mentz <[email protected]>
Cc: Petri Gynther <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'kernel/gcov/gcov.h')
-rw-r--r-- | kernel/gcov/gcov.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/gcov/gcov.h b/kernel/gcov/gcov.h index de118ad4a024..0ecf1d664ec3 100644 --- a/kernel/gcov/gcov.h +++ b/kernel/gcov/gcov.h @@ -83,4 +83,7 @@ struct gcov_link { }; extern const struct gcov_link gcov_link[]; +extern int gcov_events_enabled; +extern struct mutex gcov_lock; + #endif /* GCOV_H */ |