We get a very interesting error in our application.
java.lang.InternalError: memory pool not found
for ( final MemoryPoolMXBean bean : ManagementFactory.getMemoryPoolMXBeans() ) {
final MemoryUsage usage = bean.getUsage();
System.out.println(usage);
}
What does this error mean and how to resolve it? I searched a lot in googled and it seems like few have experienced this and no one has provided any good solutions.
Thanks in advance.
EDIT:
I am running JRockit jrrt-3.0.0-1.6.0_sun_jdk1.6_16 on Linux.
source
share