diff options
author | Mathieu Chartier <mathieuc@google.com> | 2014-05-07 15:43:14 -0700 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2014-05-13 14:45:54 -0700 |
commit | eb8167a4f4d27fce0530f6724ab8032610cd146b (patch) | |
tree | bcfeaf13ad78f2dd68466bbd0e20c71944f7e854 /runtime/jni_internal.h | |
parent | 6fb66a2bc4e1c0b7931101153e58714991237af7 (diff) | |
download | art-eb8167a4f4d27fce0530f6724ab8032610cd146b.zip art-eb8167a4f4d27fce0530f6724ab8032610cd146b.tar.gz art-eb8167a4f4d27fce0530f6724ab8032610cd146b.tar.bz2 |
Add Handle/HandleScope and delete SirtRef.
Delete SirtRef and replaced it with Handle. Handles are value types
which wrap around StackReference*.
Renamed StackIndirectReferenceTable to HandleScope.
Added a scoped handle wrapper which wraps around an Object** and
restores it in its destructor.
Renamed Handle::get -> Get.
Bug: 8473721
Change-Id: Idbfebd4f35af629f0f43931b7c5184b334822c7a
Diffstat (limited to 'runtime/jni_internal.h')
-rw-r--r-- | runtime/jni_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/jni_internal.h b/runtime/jni_internal.h index cdf3c47..5964947 100644 --- a/runtime/jni_internal.h +++ b/runtime/jni_internal.h @@ -46,7 +46,7 @@ union JValue; class Libraries; class ParsedOptions; class ScopedObjectAccess; -template<class T> class SirtRef; +template<class T> class Handle; class Thread; void JniAbortF(const char* jni_function_name, const char* fmt, ...) @@ -67,7 +67,7 @@ class JavaVMExt : public JavaVM { * Returns 'true' on success. On failure, sets 'detail' to a * human-readable description of the error. */ - bool LoadNativeLibrary(const std::string& path, const SirtRef<mirror::ClassLoader>& class_loader, + bool LoadNativeLibrary(const std::string& path, const Handle<mirror::ClassLoader>& class_loader, std::string* detail) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |