예제 #1
0
 /** Memory operations */
 public void oopsDo(AddressVisitor oopVisitor) {
   // FIXME: add more of VM functionality
   for (JavaThread thread = first(); thread != null; thread = thread.next()) {
     thread.oopsDo(oopVisitor);
   }
 }