diff options
Diffstat (limited to 'runtime/monitor.h')
| -rw-r--r-- | runtime/monitor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/monitor.h b/runtime/monitor.h index 15620d5829..bc5d2e4bb9 100644 --- a/runtime/monitor.h +++ b/runtime/monitor.h @@ -32,7 +32,7 @@ namespace art { class LockWord; -template<class T> class SirtRef; +template<class T> class Handle; class Thread; class StackVisitor; typedef uint32_t MonitorId; @@ -114,7 +114,7 @@ class Monitor { return monitor_id_; } - static void InflateThinLocked(Thread* self, SirtRef<mirror::Object>& obj, LockWord lock_word, + static void InflateThinLocked(Thread* self, Handle<mirror::Object>& obj, LockWord lock_word, uint32_t hash_code) NO_THREAD_SAFETY_ANALYSIS; static bool Deflate(Thread* self, mirror::Object* obj) |