aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/api/Build
diff options
context:
space:
mode:
authorJiri Olsa <[email protected]>2016-02-14 16:03:42 +0000
committerArnaldo Carvalho de Melo <[email protected]>2016-02-16 20:12:56 +0000
commit975f14fa8f2996604f248552eee4403def34bf5e (patch)
treeb1e32a5c9b34b50f6c6748b13e08e08da25cf0bf /tools/lib/api/Build
parentperf jvmti: Add check for java alternatives cmd in Makefile (diff)
downloadkernel-975f14fa8f2996604f248552eee4403def34bf5e.tar.gz
kernel-975f14fa8f2996604f248552eee4403def34bf5e.zip
tools lib api: Add debug output support
Adding support for warning/info/debug output within libapi code. Adding following macros: pr_warning(fmt, ...) pr_info(fmt, ...) pr_debug(fmt, ...) Also adding libapi_set_print function to set above functions. This will be used in perf to set standard debug handlers for libapi. Adding 2 header files: debug.h - to be used outside libapi, contains libapi_set_print interface debug-internal.h - to be used within libapi, contains pr_warning/pr_info/pr_debug definitions Signed-off-by: Jiri Olsa <[email protected]> Cc: David Ahern <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/lib/api/Build')
-rw-r--r--tools/lib/api/Build1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lib/api/Build b/tools/lib/api/Build
index e8b8a23b9bf4..954c644f7ad9 100644
--- a/tools/lib/api/Build
+++ b/tools/lib/api/Build
@@ -1,3 +1,4 @@
libapi-y += fd/
libapi-y += fs/
libapi-y += cpu.o
+libapi-y += debug.o