~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/c/unixsys.d

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-07-02 00:20:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060702002000-8bn170vd0qpx7to8
Tags: 0.9i-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
                cl_format(4, Cnil,
145
145
                          make_simple_base_string("~S~{ ~S~}"),
146
146
                          command, argv);
 
147
        command = ecl_null_terminated_base_string(command);
147
148
 
148
149
        attr.nLength = sizeof(SECURITY_ATTRIBUTES);
149
150
        attr.lpSecurityDescriptor = NULL;
237
238
        ZeroMemory(&st_info, sizeof(STARTUPINFO));
238
239
        st_info.cb = sizeof(STARTUPINFO);
239
240
        st_info.lpTitle = NULL; /* No window title, just exec name */
240
 
        st_info.dwFlags = STARTF_USESTDHANDLES; /* Specify std{in,out,err} */
 
241
        st_info.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; /* Specify std{in,out,err} */
 
242
        st_info.wShowWindow = SW_HIDE;
241
243
        st_info.hStdInput = child_stdin;
242
244
        st_info.hStdOutput = child_stdout;
243
245
        st_info.hStdError = child_stderr;