Hi,
Is there a way to lock a java process into memory.
Using something like mlock/mlockall it is possible to lock the memory of a process into memory, so that it doesn't get swapped out. With this approach is it possible to write a C wrapper before invoking the java process to lock the java process into memory? If so, how would the wrapper invoke the java program - fork/clone/vfork/execl?
Or maybe there is some other way to lock a java process into memory?
Thanks, Parik