out.format(fmt_out, str_mem_free, NumberUtils.toBinaryByte(rt.freeMemory()));
out.println(str_start);
long start = System.currentTimeMillis();
rt.gc();
GCStatistics stats = VmUtils.getVm().getHeapManager().getStatistics();
Thread.yield();
long end = System.currentTimeMillis();
out.format(fmt_out, str_mem_size, NumberUtils.toBinaryByte(rt.totalMemory()));
out.format(fmt_out, str_mem_free, NumberUtils.toBinaryByte(rt.freeMemory()));
out.format(fmt_out, str_time, (end - start) + "ms");
out.format(fmt_out, str_stats, stats.toString());
}
}