Enable lmkd kill tracing everywhere

Test: asdf
Exempt-From-Owner-Approval: vacation
Merged-In: If6af7df74d303466aac4a69cdfe558e9748f72b9
Change-Id: If6af7df74d303466aac4a69cdfe558e9748f72b9
This commit is contained in:
Daniel Colascione 2018-02-12 11:24:47 -08:00 committed by Suren Baghdasaryan
parent 615745cead
commit cd9ba8cbad
2 changed files with 3 additions and 12 deletions

View file

@ -7,17 +7,8 @@ cc_binary {
"liblog",
],
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

@ -52,8 +52,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 */