fork equivilent in Java
Hi all,
I need to find a way to fork my process, so that I can have two identical processes, independent of each other. I have tried emulating this through copying of this process in code, but I am finding it difficult to make this newly created processes execution begin at the correct point.
I expect both processes to continue their execution at the same point, unlike simply creating a copy of this thread+variables.
I hope someone has a method of doing this.
Regards,
Mark

