]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use vfork() in wxExecute()
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Aug 2002 21:38:12 +0000 (21:38 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Aug 2002 21:38:12 +0000 (21:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16880 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in
setup.h.in
setup.h_vms
src/unix/utilsunx.cpp

index 9b9461db7bf5840ad4bd4bdd600df57cf0b57c59..6252daa5e11054b36b164c8aa9f8e9177d056716 100644 (file)
@@ -3025,9 +3025,6 @@ if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
     fi
 fi
 
-dnl check for vfork() (even if it's the same as fork() in modern Unices)
-AC_CHECK_FUNCS(vfork)
-
 dnl check for the function for temp files creation
 AC_CHECK_FUNCS(mkstemp mktemp, break)
 
index 30a3a4261d870f8976ddfecdd2da39441d2d26c5..42eb601428900e98f976b47a8dbc38b2925c74cc 100644 (file)
 /* Define if you have the usleep function.  */
 #undef HAVE_USLEEP
 
-/* Define if you have the vfork function.  */
-#undef HAVE_VFORK
-
 /* Define if you have the <X11/XKBlib.h> header file.  */
 #undef HAVE_X11_XKBLIB_H
 
index 3216cd9b7fd2ff271035390df388acf4f6fb448e..872b63304ed820fe1e29765339c6c78a5010cad4 100644 (file)
 /* Define if you have the usleep function.  */
 #define HAVE_USLEEP 1
 
-/* Define if you have the vfork function.  */
-#define HAVE_VFORK 1
-
 /* Define if you have the <X11/XKBlib.h> header file.  */
 #undef HAVE_X11_XKBLIB_H
 
index 6ff5e309846c2ad6bd7faac8c834a84c379f8fe9..53f09c4b840067d23b0e2d2f50cf436925d8eaab 100644 (file)
@@ -563,12 +563,10 @@ long wxExecute(wxChar **argv,
     }
 
     // fork the process
-#ifdef HAVE_VFORK
-    pid_t pid = vfork();
-#else
+    //
+    // NB: do *not* use vfork() here, it completely breaks this code for some
+    //     reason under Solaris (and maybe others, although not under Linux)
     pid_t pid = fork();
-#endif
-
     if ( pid == -1 )     // error?
     {
         wxLogSysError( _("Fork failed") );