diff options
author | Elliott Hughes <enh@google.com> | 2019-02-13 12:39:07 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2019-02-14 14:23:13 -0800 |
commit | 3019d78d4abc2a5a279c75e78f76478b79364b7e (patch) | |
tree | 6f13cd058ecfaf410dc3385c3622b561ff0fe140 /linker/linker_tls.cpp | |
parent | 40f18976dbb8bc3def6c65f13c94e8c4a345fc20 (diff) |
libasync_safe: stop clobbering other folks' identifiers.
The log priorities and ids are in an NDK header, available to everyone.
Move CHECK into its own header for now. This would be better if it was
more like the <android-base/logging.h> CHECK family, but I don't have an
easy way to do that without lots of copy & paste, so punting for now.
Bug: https://issuetracker.google.com/issues/119713191
Test: boots
Change-Id: I4566be8a0a024fede0e2d257c98b908ec67af2a8
Diffstat (limited to 'linker/linker_tls.cpp')
-rw-r--r-- | linker/linker_tls.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linker/linker_tls.cpp b/linker/linker_tls.cpp index a3aa9bfac..d2edbb335 100644 --- a/linker/linker_tls.cpp +++ b/linker/linker_tls.cpp @@ -30,6 +30,7 @@ #include <vector> +#include "async_safe/CHECK.h" #include "private/ScopedRWLock.h" #include "private/ScopedSignalBlocker.h" #include "private/bionic_defs.h" |