< prev index next >

src/hotspot/share/runtime/os.hpp

Print this page

        

@@ -537,11 +537,13 @@
   static bool message_box(const char* title, const char* message);
   static char* do_you_want_to_debug(const char* message);
 
   // run cmd in a separate process and return its exit code; or -1 on failures
   static int fork_and_exec(char *cmd);
-
+#if defined(LINUX)
+  static int vfork_and_exec(char *cmd);
+#endif
   // Call ::exit() on all platforms but Windows
   static void exit(int num);
 
   // Terminate the VM, but don't exit the process
   static void shutdown();
< prev index next >