I am coding an application that creates JVMs and needs to control the memory usage of the processes spawned by the JVM.
|
|
|||||||
|
|
|
I assume that you are talking about non-Java "processes" spawned using The answer is that this is OS specific and not something that the standard Java libraries support. But if you were going to do this in Linux (or UNIX) I can think of three approaches:
|
||
|
|
|
|
You can connect to JVM process using JMX to get information about memory status / allocations and also provoke garbage collection. But you first need to enable JMX monitoring of your JVM: http://java.sun.com/j2se/1.5.0/docs/guide/management/agent.html. |
||
|
|
|
|
If by 'control' you mean 'limit to a known upper bound', then you can simply pass
and
to the vm's args when you spawn the process. see the approproate setting here |
||
|
|
