summaryrefslogtreecommitdiffstats
path: root/runtime/monitor.cc
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2013-10-11 07:59:01 -0700
committerIan Rogers <irogers@google.com>2013-10-11 07:59:01 -0700
commit13c479e7e9b62115fe0409e5273c1e976a1c09f9 (patch)
tree2c3fa2fd752f8e80ea888887c4ef46fd00bdb696 /runtime/monitor.cc
parent9822c33a66157b7a4c96222befb0848e204dcc5b (diff)
downloadart-13c479e7e9b62115fe0409e5273c1e976a1c09f9.zip
art-13c479e7e9b62115fe0409e5273c1e976a1c09f9.tar.gz
art-13c479e7e9b62115fe0409e5273c1e976a1c09f9.tar.bz2
Notify doesn't inflate, rename helper.
Change-Id: I85c93b522478b3116a66630856a2370ec0fda490
Diffstat (limited to 'runtime/monitor.cc')
-rw-r--r--runtime/monitor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor.cc b/runtime/monitor.cc
index 1ceaa5d..a5605ff 100644
--- a/runtime/monitor.cc
+++ b/runtime/monitor.cc
@@ -695,7 +695,7 @@ void Monitor::Wait(Thread* self, mirror::Object *obj, int64_t ms, int32_t ns,
mon->Wait(self, ms, ns, interruptShouldThrow, why);
}
-void Monitor::InflateAndNotify(Thread* self, mirror::Object* obj, bool notify_all) {
+void Monitor::DoNotify(Thread* self, mirror::Object* obj, bool notify_all) {
DCHECK(self != NULL);
DCHECK(obj != NULL);