hotspot/src/share/vm/prims/jvmtiCodeBlobEvents.cpp
changeset 36301 cb578d8c6cba
parent 33160 c59f1676d27e
--- a/hotspot/src/share/vm/prims/jvmtiCodeBlobEvents.cpp	Fri Feb 19 20:40:20 2016 +0300
+++ b/hotspot/src/share/vm/prims/jvmtiCodeBlobEvents.cpp	Fri Feb 19 20:41:36 2016 +0300
@@ -173,9 +173,7 @@
   _global_code_blobs = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<JvmtiCodeBlobDesc*>(50,true);
 
   // iterate over the stub code descriptors and put them in the list first.
-  int index = 0;
-  StubCodeDesc* desc;
-  while ((desc = StubCodeDesc::desc_for_index(++index)) != NULL) {
+  for (StubCodeDesc* desc = StubCodeDesc::first(); desc != NULL; desc = StubCodeDesc::next(desc)) {
     _global_code_blobs->append(new JvmtiCodeBlobDesc(desc->name(), desc->begin(), desc->end()));
   }