hotspot/src/share/vm/gc/shared/threadLocalAllocBuffer.inline.hpp
changeset 31592 43f48e165466
parent 30764 fec48bf5a827
child 35061 be6025ebffea
equal deleted inserted replaced
31401:1514c0a798d2 31592:43f48e165466
    91 
    91 
    92   _slow_allocations++;
    92   _slow_allocations++;
    93 
    93 
    94   if (PrintTLAB && Verbose) {
    94   if (PrintTLAB && Verbose) {
    95     Thread* thrd = myThread();
    95     Thread* thrd = myThread();
    96     gclog_or_tty->print("TLAB: %s thread: "INTPTR_FORMAT" [id: %2d]"
    96     gclog_or_tty->print("TLAB: %s thread: " INTPTR_FORMAT " [id: %2d]"
    97                         " obj: "SIZE_FORMAT
    97                         " obj: " SIZE_FORMAT
    98                         " free: "SIZE_FORMAT
    98                         " free: " SIZE_FORMAT
    99                         " waste: "SIZE_FORMAT"\n",
    99                         " waste: " SIZE_FORMAT "\n",
   100                         "slow", p2i(thrd), thrd->osthread()->thread_id(),
   100                         "slow", p2i(thrd), thrd->osthread()->thread_id(),
   101                         obj_size, free(), refill_waste_limit());
   101                         obj_size, free(), refill_waste_limit());
   102   }
   102   }
   103 }
   103 }
   104 
   104