summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2006-06-25 00:52:33 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2006-06-25 00:52:33 +0000
commit4e6ed6c32f93e236fc8be251ca49d7c29255060f (patch)
tree63ca2c900475efc208cda4d9b587363ba78084b7 /NEWS
parentf35a502e0ce2cab0100a1f30ae130df29d441033 (diff)
downloadclasspath-4e6ed6c32f93e236fc8be251ca49d7c29255060f.tar.gz
2006-06-24 Andrew John Hughes <gnu_andrew@member.fsf.org>
* NEWS, * doc/vmintegration.texinfo: Updated with information on new VM interface. * gnu/java/lang/management/ClassLoadingMXBeanImpl.java, * java/lang/management/ClassLoadingMXBean.java: New files implementing the class loading bean. * java/lang/management/ManagementFactory.java: (getClassLoadingMXBean()): Implemented. * vm/reference/gnu/java/lang/management/VMClassLoadingMXBeanImpl.java: New VM interface file.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index fc226a5fe..a36224864 100644
--- a/NEWS
+++ b/NEWS
@@ -38,7 +38,7 @@ Runtime interface changes:
* The method gnu.java.io.PlatformHelper.toCanonicalForm() has been
replaced with a JNI implementation of VMFile.toCanonicalForm() for
GNU/Posix systems.
-* An new class, VMRuntimeMXBeanImpl, is used to implement
+* A new class, VMRuntimeMXBeanImpl, is used to implement
the low-level support of the runtime management bean.
VMs should use it to supply the input arguments and start
time of the VM. In addition, one of sun.boot.class.path
@@ -48,6 +48,12 @@ Runtime interface changes:
reference implementation. We've also added a couple other new VM
classes to support the JSR 166 code -- sun.reflect.Reflection and
sun.reflect.misc.ReflectUtil.
+* Another new class, VMClassLoadingMXBeanImpl, is used to implement
+ the low-level support of the class loading management bean.
+ VMs need to supply it with information about how many classes
+ are currently loaded, how many have been unloaded and whether
+ verbose class loading output is on or off. Provision should also
+ be made for the latter to be toggled at runtime.
New in release 0.91 (May 15, 2006)