* src/native/vm/openjdk/jvm.cpp (JVM_GetAllThreads): Fixed minor typo
authorMichael Starzinger <michi@complang.tuwien.ac.at>
Wed, 20 May 2009 15:15:31 +0000 (17:15 +0200)
committerMichael Starzinger <michi@complang.tuwien.ac.at>
Wed, 20 May 2009 15:15:31 +0000 (17:15 +0200)
missed during list renaming.

src/native/vm/openjdk/jvm.cpp

index 596b3df83a79471947865036e66b7c0727768683..5186c6add1311a9e017e60cdaecdc31c06a49fd2 100644 (file)
@@ -3186,7 +3186,7 @@ jboolean JVM_CX8Field(JNIEnv *env, jobject obj, jfieldID fid, jlong oldVal, jlon
 jobjectArray JVM_GetAllThreads(JNIEnv *env, jclass dummy)
 {
        // Get a list of all active threads.
-       list<threadobject*> active_threads;
+       List<threadobject*> active_threads;
        ThreadList::get_active_threads(active_threads);
 
        // Allocate array to hold the java.lang.Thread objects.