summaryrefslogtreecommitdiffstats
path: root/vm/Init.h
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2011-03-02 15:08:54 -0800
committerDan Bornstein <danfuzz@android.com>2011-03-02 15:08:54 -0800
commit4b5fa2e50860015beebcc5fc3a33265b266d6d34 (patch)
tree04ff103cbbf20473a89ef2ad247b10ecc4cd0615 /vm/Init.h
parent8521311b4e55847c650a87933d5a3f04618e4e69 (diff)
downloadandroid_dalvik-4b5fa2e50860015beebcc5fc3a33265b266d6d34.tar.gz
android_dalvik-4b5fa2e50860015beebcc5fc3a33265b266d6d34.tar.bz2
android_dalvik-4b5fa2e50860015beebcc5fc3a33265b266d6d34.zip
Clarify the ordering requirement.
Hopefully, future maintainers won't also have to spend a day or so sorting out what's going on. Bug: 3500987 Change-Id: I0a1041df9ed4992563bc9d882fa134e82829cf18
Diffstat (limited to 'vm/Init.h')
-rw-r--r--vm/Init.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vm/Init.h b/vm/Init.h
index ac04bf40b..06b93aff2 100644
--- a/vm/Init.h
+++ b/vm/Init.h
@@ -41,12 +41,12 @@ int dvmPrepForDexOpt(const char* bootClassPath, DexOptimizerMode dexOptMode,
DexClassVerifyMode verifyMode, int dexoptFlags);
/*
- * Look up the set of classes and members used directly by the VM, storing
- * them into the globals instance. See Globals.h. This function is exposed
- * so that dex optimization may call it (while avoiding doing other
- * unnecessary VM initialization).
+ * Look up the set of classes and members used directly by the VM,
+ * storing references to them into the globals instance. See
+ * Globals.h. This function is exposed so that dex optimization may
+ * call it (while avoiding doing other unnecessary VM initialization).
*/
-int dvmInitRequiredClassesAndMembers(void);
+int dvmFindRequiredClassesAndMembers(void);
/*
* Replacement for fprintf() when we want to send a message to the console.