diff options
author | Ian Rogers <irogers@google.com> | 2014-07-09 21:12:06 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-07-09 21:24:04 -0700 |
commit | b8e087e0dfd619df90cbb56534478a60bc859ebf (patch) | |
tree | f6f4e896935b02c68a40ae1410edb08f7296cad9 /runtime/thread.cc | |
parent | 43b6fe0270477cd47f8dd8b064d006961a44be54 (diff) | |
download | art-b8e087e0dfd619df90cbb56534478a60bc859ebf.zip art-b8e087e0dfd619df90cbb56534478a60bc859ebf.tar.gz art-b8e087e0dfd619df90cbb56534478a60bc859ebf.tar.bz2 |
Move thread state to art::Atomic.
Leaves the CAS operations as relaxed although art::Atomic treats relaxed CAS
as a strong CAS when not compiling with clang.
Change-Id: I6d37c22173540d166b624385e52e4ad05e592adc
Diffstat (limited to 'runtime/thread.cc')
-rw-r--r-- | runtime/thread.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/thread.cc b/runtime/thread.cc index d60fb49..4985583 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -34,8 +34,6 @@ #include "base/mutex.h" #include "class_linker.h" #include "class_linker-inl.h" -#include "cutils/atomic.h" -#include "cutils/atomic-inline.h" #include "debugger.h" #include "dex_file-inl.h" #include "entrypoints/entrypoint_utils.h" |