commit | db2633ce0358c704f97130a94b582602cb01d14a | [log] [tgz] |
---|---|---|
author | Mathieu Chartier <mathieuc@google.com> | Fri May 16 09:59:29 2014 -0700 |
committer | Mathieu Chartier <mathieuc@google.com> | Fri May 16 10:36:37 2014 -0700 |
tree | ab941b728fe4343eb9872abc85755640bf059800 | |
parent | f59c6dda4928cfb05d32a56fd161e3f86a9ca560 [diff] [blame] |
Change ObjectLock to take Handle instead of Handle pointer. Change-Id: I9abdcdc5c9c9174634336b9250ab24c6aee434ec
diff --git a/runtime/thread.cc b/runtime/thread.cc index d535118..415cc0b 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc
@@ -1105,7 +1105,7 @@ if (lock != nullptr) { StackHandleScope<1> hs(self); Handle<mirror::Object> h_obj(hs.NewHandle(lock)); - ObjectLock<mirror::Object> locker(self, &h_obj); + ObjectLock<mirror::Object> locker(self, h_obj); locker.NotifyAll(); } }