Launch commands without using fork from the JVM.
authorgumartinm <gu.martinm@gmail.com>
Wed, 18 Jan 2012 01:19:01 +0000 (02:19 +0100)
committergumartinm <gu.martinm@gmail.com>
Wed, 18 Jan 2012 01:19:01 +0000 (02:19 +0100)
commita3ff75e35e80cc43b258f47aeda15022b5936945
tree424b6c76e51a15a47d1ece089c26a87ee9a03303
parentbcf2cb04ce7f2f69be5df8416654b366ae50b2b0
Launch commands without using fork from the JVM.
Sometimes you may receive a nice OutofMemory exception because of the overcommitting memory allocation,
although you could have still enough memory.
Issues related to fork and virtual memory.
See: http://developers.sun.com/solaris/articles/subprocess/subprocess.html
JavaFork/Daemon/README.txt [new file with mode: 0644]
JavaFork/Daemon/javafork [new file with mode: 0755]
JavaFork/Daemon/javafork.c [new file with mode: 0644]
JavaFork/Daemon/javafork.h [new file with mode: 0644]
JavaFork/JavaExample/javafork-example/pom.xml [new file with mode: 0644]
JavaFork/JavaExample/javafork-example/src/main/java/de/fork/java/ForkDaemon.java [new file with mode: 0644]
JavaFork/JavaExample/javafork-example/src/main/java/de/fork/java/ForkParser.java [new file with mode: 0644]
JavaFork/JavaExample/javafork-example/src/main/java/de/fork/java/LauncherProcesses.java [new file with mode: 0644]
JavaFork/JavaExample/javafork-example/src/main/java/de/fork/java/MainJavaFork.java [new file with mode: 0644]
JavaFork/JavaExample/pom.xml [new file with mode: 0644]