Merge "Enable lmkd kill tracing everywhere"

This commit is contained in:
Daniel Colascione 2018-02-20 19:46:50 +00:00 committed by Android (Google) Code Review
commit d470fbb606
2 changed files with 3 additions and 12 deletions

View file

@ -10,17 +10,8 @@ cc_binary {
"libstatslogc",
],
local_include_dirs: ["include"],
cflags: ["-Werror"],
cflags: ["-Werror", "-DLMKD_TRACE_KILLS"],
init_rc: ["lmkd.rc"],
product_variables: {
debuggable: {
cflags: [
"-DLMKD_TRACE_KILLS"
],
},
},
}
cc_library_static {

View file

@ -55,8 +55,8 @@
#else /* LMKD_TRACE_KILLS */
#define TRACE_KILL_START(pid)
#define TRACE_KILL_END()
#define TRACE_KILL_START(pid) ((void)(pid))
#define TRACE_KILL_END() ((void)0)
#endif /* LMKD_TRACE_KILLS */