summaryrefslogtreecommitdiffstats
path: root/runtime/monitor.h
diff options
context:
space:
mode:
authorHiroshi Yamauchi <yamauchi@google.com>2014-06-13 16:44:55 -0700
committerHiroshi Yamauchi <yamauchi@google.com>2014-06-13 16:44:55 -0700
commita91a4bc1f8960f64c5f7e4616d46e21b8e1bfba2 (patch)
tree31988cb0623dc3b095142b65dff37dd959ff4df2 /runtime/monitor.h
parent97ed29f800c56a06fd6989e0883e4c97bedd2453 (diff)
downloadart-a91a4bc1f8960f64c5f7e4616d46e21b8e1bfba2.zip
art-a91a4bc1f8960f64c5f7e4616d46e21b8e1bfba2.tar.gz
art-a91a4bc1f8960f64c5f7e4616d46e21b8e1bfba2.tar.bz2
Add read barriers for the class and the intern tables.
Add read barriers for the strong roots in the intern table and the (strong) roots in the class table to make possible concurrent scanning of them. Bug: 12687968 Change-Id: If6edc33a37e65a8494e66dc3b144138b1530367f
Diffstat (limited to 'runtime/monitor.h')
-rw-r--r--runtime/monitor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor.h b/runtime/monitor.h
index bd0e23c..a28823d 100644
--- a/runtime/monitor.h
+++ b/runtime/monitor.h
@@ -95,7 +95,7 @@ class Monitor {
template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
mirror::Object* GetObject() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
- return ReadBarrier::BarrierForWeakRoot<mirror::Object, kReadBarrierOption>(&obj_);
+ return ReadBarrier::BarrierForRoot<mirror::Object, kReadBarrierOption>(&obj_);
}
void SetObject(mirror::Object* object);