src/hotspot/os/bsd/os_bsd.cpp
changeset 52109 101c2b6eacbe
parent 52026 286389b60292
child 52302 912b79d983d9
--- a/src/hotspot/os/bsd/os_bsd.cpp	Fri Oct 12 10:58:06 2018 +0200
+++ b/src/hotspot/os/bsd/os_bsd.cpp	Tue Oct 09 16:08:07 2018 +0530
@@ -3785,7 +3785,7 @@
 // or -1 on failure (e.g. can't fork a new process).
 // Unlike system(), this function can be called from signal handler. It
 // doesn't block SIGINT et al.
-int os::fork_and_exec(char* cmd) {
+int os::fork_and_exec(char* cmd, bool use_vfork_if_available) {
   const char * argv[4] = {"sh", "-c", cmd, NULL};
 
   // fork() in BsdThreads/NPTL is not async-safe. It needs to run