diff options
author | 2013-03-22 09:56:53 -0700 | |
---|---|---|
committer | 2013-03-22 09:56:53 -0700 | |
commit | 52e55cbc6d18694556176b58ef79b5ae52c8039c (patch) | |
tree | c4e2784e0420ff89f6304a5a649a948783a62ef9 /src/utils.cc | |
parent | 52003fe9e2020e9d68cee1300fdb4a3f55be85a5 (diff) |
Remove gcc-based tsan support
Change-Id: I145331e295f69e99408e03cb59df26fb337510f5
Diffstat (limited to 'src/utils.cc')
-rw-r--r-- | src/utils.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/utils.cc b/src/utils.cc index 50db7fa33a..145649524a 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -16,7 +16,6 @@ #include "utils.h" -#include <dynamic_annotations.h> #include <pthread.h> #include <sys/stat.h> #include <sys/syscall.h> @@ -933,8 +932,6 @@ bool EndsWith(const std::string& s, const char* suffix) { } void SetThreadName(const char* thread_name) { - ANNOTATE_THREAD_NAME(thread_name); // For tsan. - int hasAt = 0; int hasDot = 0; const char* s = thread_name; |