View | Details | Raw Unified | Return to issue 83540
Collapse All | Expand All

(-)dmake/unix/runargv.c (-2 / +2 lines)
Lines 227-239 Link Here
227
    * Command line. This fails if the path to the program contains spaces.
227
    * Command line. This fails if the path to the program contains spaces.
228
    * Process handle not inheritable.
228
    * Process handle not inheritable.
229
    * Thread handle not inheritable.
229
    * Thread handle not inheritable.
230
    * Set handle inheritance to FALSE.
230
    * Set handle inheritance (stdout, stderr, etc.) to TRUE.
231
    * No creation flags.
231
    * No creation flags.
232
    * Use parent's environment block.
232
    * Use parent's environment block.
233
    * Use parent's starting directory.
233
    * Use parent's starting directory.
234
    * Pointer to STARTUPINFO structure.
234
    * Pointer to STARTUPINFO structure.
235
    * Pointer to PROCESS_INFORMATION structure. */
235
    * Pointer to PROCESS_INFORMATION structure. */
236
   if( CreateProcess(NULL, argv[0], NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi) ) {
236
   if( CreateProcess(NULL, argv[0], NULL, NULL, TRUE, 0, NULL, NULL, &si, &pi) ) {
237
      pid.pid = pi.hProcess;
237
      pid.pid = pi.hProcess;
238
      pid.tid = pi.hThread;
238
      pid.tid = pi.hThread;
239
   } else {
239
   } else {

Return to issue 83540