]> git.saurik.com Git - wxWidgets.git/blame - src/unix/utilsunx.cpp
FIX positioning problems with carbon media control - CreateMovieControl positioning...
[wxWidgets.git] / src / unix / utilsunx.cpp
CommitLineData
518b5d2f 1/////////////////////////////////////////////////////////////////////////////
79066131 2// Name: unix/utilsunx.cpp
518b5d2f
VZ
3// Purpose: generic Unix implementation of many wx functions
4// Author: Vadim Zeitlin
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
65571936 7// Licence: wxWindows licence
518b5d2f
VZ
8/////////////////////////////////////////////////////////////////////////////
9
10// ============================================================================
11// declarations
12// ============================================================================
13
14// ----------------------------------------------------------------------------
15// headers
16// ----------------------------------------------------------------------------
17
74c719ed
VZ
18#include <pwd.h>
19
14f355c2
VS
20// for compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
518b5d2f
VZ
23#include "wx/defs.h"
24#include "wx/string.h"
25
26#include "wx/intl.h"
27#include "wx/log.h"
a37a5a73 28#include "wx/app.h"
46446cc2 29#include "wx/apptrait.h"
518b5d2f
VZ
30
31#include "wx/utils.h"
32#include "wx/process.h"
bdc72a22 33#include "wx/thread.h"
518b5d2f 34
80d6dc0a 35#include "wx/wfstream.h"
8b33ae2d 36
e2478fde
VZ
37#include "wx/unix/execute.h"
38
2887179b
VZ
39#if wxUSE_STREAMS
40
41// define this to let wxexec.cpp know that we know what we're doing
42#define _WX_USED_BY_WXEXECUTE_
43#include "../common/execcmn.cpp"
44
45#endif // wxUSE_STREAMS
46
ec67cff1 47#if wxUSE_BASE
e2478fde 48
74c719ed
VZ
49#if defined(__MWERKS__) && defined(__MACH__)
50 #ifndef WXWIN_OS_DESCRIPTION
51 #define WXWIN_OS_DESCRIPTION "MacOS X"
52 #endif
53 #ifndef HAVE_NANOSLEEP
54 #define HAVE_NANOSLEEP
55 #endif
56 #ifndef HAVE_UNAME
57 #define HAVE_UNAME
58 #endif
59
60 // our configure test believes we can use sigaction() if the function is
61 // available but Metrowekrs with MSL run-time does have the function but
62 // doesn't have sigaction struct so finally we can't use it...
63 #ifdef __MSL__
64 #undef wxUSE_ON_FATAL_EXCEPTION
65 #define wxUSE_ON_FATAL_EXCEPTION 0
66 #endif
8d4f85ce
SC
67#endif
68
85da04e9
VZ
69// not only the statfs syscall is called differently depending on platform, but
70// one of its incarnations, statvfs(), takes different arguments under
71// different platforms and even different versions of the same system (Solaris
72// 7 and 8): if you want to test for this, don't forget that the problems only
73// appear if the large files support is enabled
eadd7bd2 74#ifdef HAVE_STATFS
85da04e9
VZ
75 #ifdef __BSD__
76 #include <sys/param.h>
77 #include <sys/mount.h>
78 #else // !__BSD__
79 #include <sys/vfs.h>
80 #endif // __BSD__/!__BSD__
81
82 #define wxStatfs statfs
eadd7bd2
VZ
83#endif // HAVE_STATFS
84
9952adac
VZ
85#ifdef HAVE_STATVFS
86 #include <sys/statvfs.h>
87
85da04e9
VZ
88 #define wxStatfs statvfs
89#endif // HAVE_STATVFS
90
91#if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
92 // WX_STATFS_T is detected by configure
93 #define wxStatfs_t WX_STATFS_T
94#endif
9952adac 95
f6bcfd97
BP
96// SGI signal.h defines signal handler arguments differently depending on
97// whether _LANGUAGE_C_PLUS_PLUS is set or not - do set it
98#if defined(__SGI__) && !defined(_LANGUAGE_C_PLUS_PLUS)
99 #define _LANGUAGE_C_PLUS_PLUS 1
100#endif // SGI hack
101
518b5d2f
VZ
102#include <stdarg.h>
103#include <dirent.h>
104#include <string.h>
105#include <sys/stat.h>
106#include <sys/types.h>
518b5d2f 107#include <sys/wait.h>
e2478fde 108#include <unistd.h>
518b5d2f
VZ
109#include <errno.h>
110#include <netdb.h>
111#include <signal.h>
112#include <fcntl.h> // for O_WRONLY and friends
113#include <time.h> // nanosleep() and/or usleep()
fad866f4 114#include <ctype.h> // isspace()
b12915c1 115#include <sys/time.h> // needed for FD_SETSIZE
7bcb11d3 116
0fcdf6dc 117#ifdef HAVE_UNAME
518b5d2f
VZ
118 #include <sys/utsname.h> // for uname()
119#endif // HAVE_UNAME
120
121// ----------------------------------------------------------------------------
122// conditional compilation
123// ----------------------------------------------------------------------------
124
125// many versions of Unices have this function, but it is not defined in system
126// headers - please add your system here if it is the case for your OS.
127// SunOS < 5.6 (i.e. Solaris < 2.6) and DG-UX are like this.
1363811b 128#if !defined(HAVE_USLEEP) && \
d67fee71 129 ((defined(__SUN__) && !defined(__SunOs_5_6) && \
518b5d2f 130 !defined(__SunOs_5_7) && !defined(__SUNPRO_CC)) || \
d67fee71 131 defined(__osf__) || defined(__EMX__))
518b5d2f
VZ
132 extern "C"
133 {
1363811b
VZ
134 #ifdef __SUN__
135 int usleep(unsigned int usec);
136 #else // !Sun
bdc72a22
VZ
137 #ifdef __EMX__
138 /* I copied this from the XFree86 diffs. AV. */
139 #define INCL_DOSPROCESS
140 #include <os2.h>
141 inline void usleep(unsigned long delay)
142 {
143 DosSleep(delay ? (delay/1000l) : 1l);
144 }
145 #else // !Sun && !EMX
146 void usleep(unsigned long usec);
147 #endif
e6daf794 148 #endif // Sun/EMX/Something else
518b5d2f 149 };
bdc72a22
VZ
150
151 #define HAVE_USLEEP 1
518b5d2f
VZ
152#endif // Unices without usleep()
153
518b5d2f
VZ
154// ============================================================================
155// implementation
156// ============================================================================
157
158// ----------------------------------------------------------------------------
159// sleeping
160// ----------------------------------------------------------------------------
161
162void wxSleep(int nSecs)
163{
164 sleep(nSecs);
165}
166
66cd9d7f 167void wxMicroSleep(unsigned long microseconds)
518b5d2f 168{
b12915c1 169#if defined(HAVE_NANOSLEEP)
518b5d2f 170 timespec tmReq;
66cd9d7f
VZ
171 tmReq.tv_sec = (time_t)(microseconds / 1000000);
172 tmReq.tv_nsec = (microseconds % 1000000) * 1000;
518b5d2f
VZ
173
174 // we're not interested in remaining time nor in return value
175 (void)nanosleep(&tmReq, (timespec *)NULL);
b12915c1 176#elif defined(HAVE_USLEEP)
518b5d2f
VZ
177 // uncomment this if you feel brave or if you are sure that your version
178 // of Solaris has a safe usleep() function but please notice that usleep()
179 // is known to lead to crashes in MT programs in Solaris 2.[67] and is not
180 // documented as MT-Safe
ea18eed9 181 #if defined(__SUN__) && wxUSE_THREADS
518b5d2f
VZ
182 #error "usleep() cannot be used in MT programs under Solaris."
183 #endif // Sun
184
66cd9d7f 185 usleep(microseconds);
b12915c1
VZ
186#elif defined(HAVE_SLEEP)
187 // under BeOS sleep() takes seconds (what about other platforms, if any?)
66cd9d7f 188 sleep(microseconds * 1000000);
518b5d2f 189#else // !sleep function
66cd9d7f 190 #error "usleep() or nanosleep() function required for wxMicroSleep"
518b5d2f
VZ
191#endif // sleep function
192}
193
66cd9d7f
VZ
194void wxMilliSleep(unsigned long milliseconds)
195{
196 wxMicroSleep(milliseconds*1000);
197}
198
518b5d2f
VZ
199// ----------------------------------------------------------------------------
200// process management
201// ----------------------------------------------------------------------------
202
e0f6b731 203int wxKill(long pid, wxSignal sig, wxKillError *rc, int flags)
518b5d2f 204{
e0f6b731 205 int err = kill((pid_t) (flags & wxKILL_CHILDREN) ? -pid : pid, (int)sig);
50567b69
VZ
206 if ( rc )
207 {
f0bce4d4 208 switch ( err ? errno : 0 )
50567b69
VZ
209 {
210 case 0:
211 *rc = wxKILL_OK;
212 break;
213
214 case EINVAL:
215 *rc = wxKILL_BAD_SIGNAL;
216 break;
217
218 case EPERM:
219 *rc = wxKILL_ACCESS_DENIED;
220 break;
221
222 case ESRCH:
223 *rc = wxKILL_NO_PROCESS;
224 break;
225
226 default:
227 // this goes against Unix98 docs so log it
228 wxLogDebug(_T("unexpected kill(2) return value %d"), err);
229
230 // something else...
231 *rc = wxKILL_ERROR;
232 }
233 }
234
235 return err;
518b5d2f
VZ
236}
237
fad866f4
KB
238#define WXEXECUTE_NARGS 127
239
fbf456aa 240long wxExecute( const wxString& command, int flags, wxProcess *process )
518b5d2f 241{
8ea92b4d 242 wxCHECK_MSG( !command.empty(), 0, wxT("can't exec empty command") );
518b5d2f 243
647b8e37
VZ
244#if wxUSE_THREADS
245 // fork() doesn't mix well with POSIX threads: on many systems the program
246 // deadlocks or crashes for some reason. Probably our code is buggy and
247 // doesn't do something which must be done to allow this to work, but I
248 // don't know what yet, so for now just warn the user (this is the least we
249 // can do) about it
250 wxASSERT_MSG( wxThread::IsMain(),
251 _T("wxExecute() can be called only from the main thread") );
252#endif // wxUSE_THREADS
253
518b5d2f 254 int argc = 0;
05079acc 255 wxChar *argv[WXEXECUTE_NARGS];
fad866f4 256 wxString argument;
05079acc 257 const wxChar *cptr = command.c_str();
223d09f6 258 wxChar quotechar = wxT('\0'); // is arg quoted?
9d8aca48 259 bool escaped = false;
518b5d2f 260
0ed9a934 261 // split the command line in arguments
fad866f4
KB
262 do
263 {
223d09f6
KB
264 argument=wxT("");
265 quotechar = wxT('\0');
0ed9a934 266
fad866f4 267 // eat leading whitespace:
05079acc 268 while ( wxIsspace(*cptr) )
fad866f4 269 cptr++;
0ed9a934 270
223d09f6 271 if ( *cptr == wxT('\'') || *cptr == wxT('"') )
fad866f4 272 quotechar = *cptr++;
0ed9a934 273
fad866f4
KB
274 do
275 {
223d09f6 276 if ( *cptr == wxT('\\') && ! escaped )
fad866f4 277 {
9d8aca48 278 escaped = true;
fad866f4
KB
279 cptr++;
280 continue;
281 }
0ed9a934 282
fad866f4 283 // all other characters:
0ed9a934 284 argument += *cptr++;
9d8aca48 285 escaped = false;
0ed9a934
VZ
286
287 // have we reached the end of the argument?
288 if ( (*cptr == quotechar && ! escaped)
223d09f6
KB
289 || (quotechar == wxT('\0') && wxIsspace(*cptr))
290 || *cptr == wxT('\0') )
fad866f4 291 {
0ed9a934 292 wxASSERT_MSG( argc < WXEXECUTE_NARGS,
223d09f6 293 wxT("too many arguments in wxExecute") );
0ed9a934 294
05079acc
OK
295 argv[argc] = new wxChar[argument.length() + 1];
296 wxStrcpy(argv[argc], argument.c_str());
fad866f4 297 argc++;
0ed9a934 298
fad866f4 299 // if not at end of buffer, swallow last character:
0ed9a934
VZ
300 if(*cptr)
301 cptr++;
302
fad866f4
KB
303 break; // done with this one, start over
304 }
0ed9a934
VZ
305 } while(*cptr);
306 } while(*cptr);
fad866f4 307 argv[argc] = NULL;
0ed9a934
VZ
308
309 // do execute the command
fbf456aa 310 long lRc = wxExecute(argv, flags, process);
518b5d2f 311
0ed9a934 312 // clean up
fad866f4 313 argc = 0;
0ed9a934 314 while( argv[argc] )
fad866f4 315 delete [] argv[argc++];
518b5d2f
VZ
316
317 return lRc;
318}
319
2c8e4738
VZ
320// ----------------------------------------------------------------------------
321// wxShell
322// ----------------------------------------------------------------------------
323
324static wxString wxMakeShellCommand(const wxString& command)
518b5d2f
VZ
325{
326 wxString cmd;
cd6ce4a9 327 if ( !command )
2c8e4738
VZ
328 {
329 // just an interactive shell
cd6ce4a9 330 cmd = _T("xterm");
2c8e4738 331 }
518b5d2f 332 else
2c8e4738
VZ
333 {
334 // execute command in a shell
335 cmd << _T("/bin/sh -c '") << command << _T('\'');
336 }
337
338 return cmd;
339}
340
341bool wxShell(const wxString& command)
342{
fbf456aa 343 return wxExecute(wxMakeShellCommand(command), wxEXEC_SYNC) == 0;
2c8e4738
VZ
344}
345
346bool wxShell(const wxString& command, wxArrayString& output)
347{
9d8aca48 348 wxCHECK_MSG( !command.empty(), false, _T("can't exec shell non interactively") );
518b5d2f 349
2c8e4738 350 return wxExecute(wxMakeShellCommand(command), output);
518b5d2f
VZ
351}
352
f6ba47d9
VZ
353// Shutdown or reboot the PC
354bool wxShutdown(wxShutdownFlags wFlags)
355{
356 wxChar level;
357 switch ( wFlags )
358 {
359 case wxSHUTDOWN_POWEROFF:
360 level = _T('0');
361 break;
362
363 case wxSHUTDOWN_REBOOT:
364 level = _T('6');
365 break;
366
367 default:
368 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
9d8aca48 369 return false;
f6ba47d9
VZ
370 }
371
372 return system(wxString::Format(_T("init %c"), level).mb_str()) == 0;
373}
374
8ea92b4d
WS
375wxPowerType wxGetPowerType()
376{
377 // TODO
378 return wxPOWER_UNKNOWN;
379}
380
381wxBatteryState wxGetBatteryState()
382{
383 // TODO
384 return wxBATTERY_UNKNOWN_STATE;
385}
f6ba47d9 386
cd6ce4a9
VZ
387// ----------------------------------------------------------------------------
388// wxStream classes to support IO redirection in wxExecute
389// ----------------------------------------------------------------------------
6dc6fda6 390
1e6feb95
VZ
391#if wxUSE_STREAMS
392
2b5f62a0 393bool wxPipeInputStream::CanRead() const
8b33ae2d 394{
cd6ce4a9 395 if ( m_lasterror == wxSTREAM_EOF )
9d8aca48 396 return false;
cd6ce4a9
VZ
397
398 // check if there is any input available
399 struct timeval tv;
400 tv.tv_sec = 0;
401 tv.tv_usec = 0;
402
80d6dc0a
VZ
403 const int fd = m_file->fd();
404
cd6ce4a9
VZ
405 fd_set readfds;
406 FD_ZERO(&readfds);
80d6dc0a
VZ
407 FD_SET(fd, &readfds);
408 switch ( select(fd + 1, &readfds, NULL, NULL, &tv) )
cd6ce4a9
VZ
409 {
410 case -1:
411 wxLogSysError(_("Impossible to get child process input"));
412 // fall through
8b33ae2d 413
cd6ce4a9 414 case 0:
9d8aca48 415 return false;
8b33ae2d 416
cd6ce4a9
VZ
417 default:
418 wxFAIL_MSG(_T("unexpected select() return value"));
419 // still fall through
420
421 case 1:
6f3d3c68
VZ
422 // input available -- or maybe not, as select() returns 1 when a
423 // read() will complete without delay, but it could still not read
424 // anything
425 return !Eof();
cd6ce4a9 426 }
8b33ae2d
GL
427}
428
1e6feb95
VZ
429#endif // wxUSE_STREAMS
430
b477f956
VZ
431// ----------------------------------------------------------------------------
432// wxExecute: the real worker function
433// ----------------------------------------------------------------------------
79066131 434
ef0ed19e 435#ifdef __VMS
79066131 436 #pragma message disable codeunreachable
ef0ed19e 437#endif
b477f956 438
6dc6fda6 439long wxExecute(wxChar **argv,
fbf456aa 440 int flags,
cd6ce4a9 441 wxProcess *process)
518b5d2f 442{
f6bcfd97 443 // for the sync execution, we return -1 to indicate failure, but for async
accb3257
VZ
444 // case we return 0 which is never a valid PID
445 //
446 // we define this as a macro, not a variable, to avoid compiler warnings
447 // about "ERROR_RETURN_CODE value may be clobbered by fork()"
fbf456aa 448 #define ERROR_RETURN_CODE ((flags & wxEXEC_SYNC) ? -1 : 0)
f6bcfd97 449
accb3257 450 wxCHECK_MSG( *argv, ERROR_RETURN_CODE, wxT("can't exec empty command") );
518b5d2f 451
05079acc
OK
452#if wxUSE_UNICODE
453 int mb_argc = 0;
454 char *mb_argv[WXEXECUTE_NARGS];
455
e90c1d2a
VZ
456 while (argv[mb_argc])
457 {
cd6ce4a9
VZ
458 wxWX2MBbuf mb_arg = wxConvertWX2MB(argv[mb_argc]);
459 mb_argv[mb_argc] = strdup(mb_arg);
460 mb_argc++;
05079acc
OK
461 }
462 mb_argv[mb_argc] = (char *) NULL;
e90c1d2a
VZ
463
464 // this macro will free memory we used above
465 #define ARGS_CLEANUP \
345b0247 466 for ( mb_argc = 0; mb_argv[mb_argc]; mb_argc++ ) \
e90c1d2a
VZ
467 free(mb_argv[mb_argc])
468#else // ANSI
469 // no need for cleanup
470 #define ARGS_CLEANUP
471
05079acc 472 wxChar **mb_argv = argv;
e90c1d2a 473#endif // Unicode/ANSI
518b5d2f 474
e2478fde
VZ
475 // we want this function to work even if there is no wxApp so ensure that
476 // we have a valid traits pointer
477 wxConsoleAppTraits traitsConsole;
478 wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits() : NULL;
479 if ( !traits )
480 traits = &traitsConsole;
481
482 // this struct contains all information which we pass to and from
483 // wxAppTraits methods
484 wxExecuteData execData;
485 execData.flags = flags;
486 execData.process = process;
487
518b5d2f 488 // create pipes
e2478fde 489 if ( !traits->CreateEndProcessPipe(execData) )
518b5d2f 490 {
cd6ce4a9 491 wxLogError( _("Failed to execute '%s'\n"), *argv );
e90c1d2a
VZ
492
493 ARGS_CLEANUP;
494
accb3257 495 return ERROR_RETURN_CODE;
518b5d2f
VZ
496 }
497
f6bcfd97 498 // pipes for inter process communication
b477f956
VZ
499 wxPipe pipeIn, // stdin
500 pipeOut, // stdout
501 pipeErr; // stderr
cd6ce4a9
VZ
502
503 if ( process && process->IsRedirected() )
8b33ae2d 504 {
b477f956 505 if ( !pipeIn.Create() || !pipeOut.Create() || !pipeErr.Create() )
8b33ae2d 506 {
cd6ce4a9 507 wxLogError( _("Failed to execute '%s'\n"), *argv );
8b33ae2d
GL
508
509 ARGS_CLEANUP;
510
accb3257 511 return ERROR_RETURN_CODE;
8b33ae2d
GL
512 }
513 }
8b33ae2d 514
518b5d2f 515 // fork the process
ef5f8ab6
VZ
516 //
517 // NB: do *not* use vfork() here, it completely breaks this code for some
518 // reason under Solaris (and maybe others, although not under Linux)
b2ddee86
JJ
519 // But on OpenVMS we do not have fork so we have to use vfork and
520 // cross our fingers that it works.
521#ifdef __VMS
522 pid_t pid = vfork();
523#else
524 pid_t pid = fork();
525#endif
526 if ( pid == -1 ) // error?
518b5d2f
VZ
527 {
528 wxLogSysError( _("Fork failed") );
e90c1d2a
VZ
529
530 ARGS_CLEANUP;
531
accb3257 532 return ERROR_RETURN_CODE;
518b5d2f 533 }
cd6ce4a9 534 else if ( pid == 0 ) // we're in child
518b5d2f 535 {
cd6ce4a9 536 // These lines close the open file descriptors to to avoid any
518b5d2f 537 // input/output which might block the process or irritate the user. If
cd6ce4a9
VZ
538 // one wants proper IO for the subprocess, the right thing to do is to
539 // start an xterm executing it.
fbf456aa 540 if ( !(flags & wxEXEC_SYNC) )
518b5d2f 541 {
35ef537b
VZ
542 // FD_SETSIZE is unsigned under BSD, signed under other platforms
543 // so we need a cast to avoid warnings on all platforms
544 for ( int fd = 0; fd < (int)FD_SETSIZE; fd++ )
518b5d2f 545 {
b477f956
VZ
546 if ( fd == pipeIn[wxPipe::Read]
547 || fd == pipeOut[wxPipe::Write]
548 || fd == pipeErr[wxPipe::Write]
e2478fde 549 || traits->IsWriteFDOfEndProcessPipe(execData, fd) )
cd6ce4a9
VZ
550 {
551 // don't close this one, we still need it
552 continue;
553 }
e90c1d2a 554
b477f956 555 // leave stderr opened too, it won't do any harm
e90c1d2a 556 if ( fd != STDERR_FILENO )
518b5d2f
VZ
557 close(fd);
558 }
0c9c4401 559 }
e1082c9f 560
e8e776aa 561#if !defined(__VMS) && !defined(__EMX__)
0c9c4401
VZ
562 if ( flags & wxEXEC_MAKE_GROUP_LEADER )
563 {
564 // Set process group to child process' pid. Then killing -pid
565 // of the parent will kill the process and all of its children.
566 setsid();
518b5d2f 567 }
0c9c4401
VZ
568#endif // !__VMS
569
0c9c4401
VZ
570 // reading side can be safely closed but we should keep the write one
571 // opened
e2478fde 572 traits->DetachWriteFDOfEndProcessPipe(execData);
518b5d2f 573
80d6dc0a 574 // redirect stdin, stdout and stderr
b477f956 575 if ( pipeIn.IsOk() )
cd6ce4a9 576 {
b477f956
VZ
577 if ( dup2(pipeIn[wxPipe::Read], STDIN_FILENO) == -1 ||
578 dup2(pipeOut[wxPipe::Write], STDOUT_FILENO) == -1 ||
579 dup2(pipeErr[wxPipe::Write], STDERR_FILENO) == -1 )
cd6ce4a9 580 {
f6bcfd97 581 wxLogSysError(_("Failed to redirect child process input/output"));
cd6ce4a9 582 }
518b5d2f 583
b477f956
VZ
584 pipeIn.Close();
585 pipeOut.Close();
586 pipeErr.Close();
cd6ce4a9 587 }
518b5d2f 588
05079acc 589 execvp (*mb_argv, mb_argv);
518b5d2f 590
d264d709 591 fprintf(stderr, "execvp(");
8d4f85ce
SC
592 // CS changed ppc to ppc_ as ppc is not available under mac os CW Mach-O
593 for ( char **ppc_ = mb_argv; *ppc_; ppc_++ )
594 fprintf(stderr, "%s%s", ppc_ == mb_argv ? "" : ", ", *ppc_);
d264d709
VZ
595 fprintf(stderr, ") failed with error %d!\n", errno);
596
518b5d2f 597 // there is no return after successful exec()
518b5d2f 598 _exit(-1);
1d8dd65e
VZ
599
600 // some compilers complain about missing return - of course, they
601 // should know that exit() doesn't return but what else can we do if
602 // they don't?
b477f956
VZ
603 //
604 // and, sure enough, other compilers complain about unreachable code
605 // after exit() call, so we can just always have return here...
1d8dd65e
VZ
606#if defined(__VMS) || defined(__INTEL_COMPILER)
607 return 0;
608#endif
518b5d2f 609 }
cd6ce4a9 610 else // we're in parent
518b5d2f 611 {
cd6ce4a9
VZ
612 ARGS_CLEANUP;
613
7764f973
VZ
614 // save it for WaitForChild() use
615 execData.pid = pid;
616
80d6dc0a
VZ
617 // prepare for IO redirection
618
0e300ddd 619#if wxUSE_STREAMS
80d6dc0a
VZ
620 // the input buffer bufOut is connected to stdout, this is why it is
621 // called bufOut and not bufIn
622 wxStreamTempInputBuffer bufOut,
623 bufErr;
0e300ddd
VZ
624#endif // wxUSE_STREAMS
625
cd6ce4a9
VZ
626 if ( process && process->IsRedirected() )
627 {
1e6feb95 628#if wxUSE_STREAMS
80d6dc0a
VZ
629 wxOutputStream *inStream =
630 new wxFileOutputStream(pipeIn.Detach(wxPipe::Write));
b477f956 631
79066131
VZ
632 wxPipeInputStream *outStream =
633 new wxPipeInputStream(pipeOut.Detach(wxPipe::Read));
b477f956 634
79066131
VZ
635 wxPipeInputStream *errStream =
636 new wxPipeInputStream(pipeErr.Detach(wxPipe::Read));
f6bcfd97 637
80d6dc0a 638 process->SetPipeStreams(outStream, inStream, errStream);
0e300ddd 639
80d6dc0a 640 bufOut.Init(outStream);
b477f956 641 bufErr.Init(errStream);
e2478fde
VZ
642
643 execData.bufOut = &bufOut;
644 execData.bufErr = &bufErr;
1e6feb95 645#endif // wxUSE_STREAMS
b477f956 646 }
1e6feb95 647
b477f956
VZ
648 if ( pipeIn.IsOk() )
649 {
650 pipeIn.Close();
651 pipeOut.Close();
652 pipeErr.Close();
cd6ce4a9
VZ
653 }
654
e2478fde 655 return traits->WaitForChild(execData);
518b5d2f 656 }
79656e30
GD
657
658 return ERROR_RETURN_CODE;
518b5d2f 659}
79066131 660
ef0ed19e 661#ifdef __VMS
79066131 662 #pragma message enable codeunreachable
ef0ed19e 663#endif
518b5d2f 664
accb3257 665#undef ERROR_RETURN_CODE
f6bcfd97
BP
666#undef ARGS_CLEANUP
667
518b5d2f
VZ
668// ----------------------------------------------------------------------------
669// file and directory functions
670// ----------------------------------------------------------------------------
671
05079acc 672const wxChar* wxGetHomeDir( wxString *home )
518b5d2f 673{
8ea92b4d 674 *home = wxGetUserHome( wxEmptyString );
79066131 675 wxString tmp;
8ea92b4d 676 if ( home->empty() )
223d09f6 677 *home = wxT("/");
181cbcf4 678#ifdef __VMS
79066131
VZ
679 tmp = *home;
680 if ( tmp.Last() != wxT(']'))
681 if ( tmp.Last() != wxT('/')) *home << wxT('/');
181cbcf4 682#endif
518b5d2f
VZ
683 return home->c_str();
684}
685
05079acc
OK
686#if wxUSE_UNICODE
687const wxMB2WXbuf wxGetUserHome( const wxString &user )
e90c1d2a 688#else // just for binary compatibility -- there is no 'const' here
518b5d2f 689char *wxGetUserHome( const wxString &user )
05079acc 690#endif
518b5d2f
VZ
691{
692 struct passwd *who = (struct passwd *) NULL;
693
0fb67cd1 694 if ( !user )
518b5d2f 695 {
e90c1d2a 696 wxChar *ptr;
518b5d2f 697
223d09f6 698 if ((ptr = wxGetenv(wxT("HOME"))) != NULL)
518b5d2f 699 {
2b5f62a0
VZ
700#if wxUSE_UNICODE
701 wxWCharBuffer buffer( ptr );
702 return buffer;
703#else
518b5d2f 704 return ptr;
2b5f62a0 705#endif
518b5d2f 706 }
223d09f6 707 if ((ptr = wxGetenv(wxT("USER"))) != NULL || (ptr = wxGetenv(wxT("LOGNAME"))) != NULL)
518b5d2f 708 {
e90c1d2a 709 who = getpwnam(wxConvertWX2MB(ptr));
518b5d2f
VZ
710 }
711
712 // We now make sure the the user exists!
713 if (who == NULL)
714 {
715 who = getpwuid(getuid());
716 }
717 }
718 else
719 {
05079acc 720 who = getpwnam (user.mb_str());
518b5d2f
VZ
721 }
722
af111fc3 723 return wxConvertMB2WX(who ? who->pw_dir : 0);
518b5d2f
VZ
724}
725
726// ----------------------------------------------------------------------------
0fb67cd1 727// network and user id routines
518b5d2f
VZ
728// ----------------------------------------------------------------------------
729
0fb67cd1
VZ
730// retrieve either the hostname or FQDN depending on platform (caller must
731// check whether it's one or the other, this is why this function is for
732// private use only)
05079acc 733static bool wxGetHostNameInternal(wxChar *buf, int sz)
518b5d2f 734{
9d8aca48 735 wxCHECK_MSG( buf, false, wxT("NULL pointer in wxGetHostNameInternal") );
518b5d2f 736
223d09f6 737 *buf = wxT('\0');
518b5d2f
VZ
738
739 // we're using uname() which is POSIX instead of less standard sysinfo()
740#if defined(HAVE_UNAME)
cc743a6f 741 struct utsname uts;
518b5d2f
VZ
742 bool ok = uname(&uts) != -1;
743 if ( ok )
744 {
e90c1d2a 745 wxStrncpy(buf, wxConvertMB2WX(uts.nodename), sz - 1);
223d09f6 746 buf[sz] = wxT('\0');
518b5d2f
VZ
747 }
748#elif defined(HAVE_GETHOSTNAME)
749 bool ok = gethostname(buf, sz) != -1;
0fb67cd1 750#else // no uname, no gethostname
223d09f6 751 wxFAIL_MSG(wxT("don't know host name for this machine"));
518b5d2f 752
9d8aca48 753 bool ok = false;
0fb67cd1 754#endif // uname/gethostname
518b5d2f
VZ
755
756 if ( !ok )
757 {
758 wxLogSysError(_("Cannot get the hostname"));
759 }
760
761 return ok;
762}
763
05079acc 764bool wxGetHostName(wxChar *buf, int sz)
0fb67cd1
VZ
765{
766 bool ok = wxGetHostNameInternal(buf, sz);
767
768 if ( ok )
769 {
770 // BSD systems return the FQDN, we only want the hostname, so extract
771 // it (we consider that dots are domain separators)
223d09f6 772 wxChar *dot = wxStrchr(buf, wxT('.'));
0fb67cd1
VZ
773 if ( dot )
774 {
775 // nuke it
223d09f6 776 *dot = wxT('\0');
0fb67cd1
VZ
777 }
778 }
779
780 return ok;
781}
782
05079acc 783bool wxGetFullHostName(wxChar *buf, int sz)
0fb67cd1
VZ
784{
785 bool ok = wxGetHostNameInternal(buf, sz);
786
787 if ( ok )
788 {
223d09f6 789 if ( !wxStrchr(buf, wxT('.')) )
0fb67cd1 790 {
e90c1d2a 791 struct hostent *host = gethostbyname(wxConvertWX2MB(buf));
0fb67cd1
VZ
792 if ( !host )
793 {
794 wxLogSysError(_("Cannot get the official hostname"));
795
9d8aca48 796 ok = false;
0fb67cd1
VZ
797 }
798 else
799 {
800 // the canonical name
e90c1d2a 801 wxStrncpy(buf, wxConvertMB2WX(host->h_name), sz);
0fb67cd1
VZ
802 }
803 }
804 //else: it's already a FQDN (BSD behaves this way)
805 }
806
807 return ok;
808}
809
05079acc 810bool wxGetUserId(wxChar *buf, int sz)
518b5d2f
VZ
811{
812 struct passwd *who;
813
223d09f6 814 *buf = wxT('\0');
518b5d2f
VZ
815 if ((who = getpwuid(getuid ())) != NULL)
816 {
e90c1d2a 817 wxStrncpy (buf, wxConvertMB2WX(who->pw_name), sz - 1);
9d8aca48 818 return true;
518b5d2f
VZ
819 }
820
9d8aca48 821 return false;
518b5d2f
VZ
822}
823
05079acc 824bool wxGetUserName(wxChar *buf, int sz)
518b5d2f
VZ
825{
826 struct passwd *who;
518b5d2f 827
223d09f6 828 *buf = wxT('\0');
b12915c1
VZ
829 if ((who = getpwuid (getuid ())) != NULL)
830 {
831 // pw_gecos field in struct passwd is not standard
bd3277fe 832#ifdef HAVE_PW_GECOS
b12915c1 833 char *comma = strchr(who->pw_gecos, ',');
518b5d2f
VZ
834 if (comma)
835 *comma = '\0'; // cut off non-name comment fields
e90c1d2a 836 wxStrncpy (buf, wxConvertMB2WX(who->pw_gecos), sz - 1);
b12915c1 837#else // !HAVE_PW_GECOS
0fcdf6dc 838 wxStrncpy (buf, wxConvertMB2WX(who->pw_name), sz - 1);
b12915c1 839#endif // HAVE_PW_GECOS/!HAVE_PW_GECOS
9d8aca48 840 return true;
518b5d2f
VZ
841 }
842
9d8aca48 843 return false;
518b5d2f
VZ
844}
845
e2478fde 846// this function is in mac/utils.cpp for wxMac
6e73695c 847#ifndef __WXMAC__
e2478fde 848
bdc72a22
VZ
849wxString wxGetOsDescription()
850{
db1d0193
VZ
851 FILE *f = popen("uname -s -r -m", "r");
852 if (f)
853 {
854 char buf[256];
855 size_t c = fread(buf, 1, sizeof(buf) - 1, f);
856 pclose(f);
857 // Trim newline from output.
858 if (c && buf[c - 1] == '\n')
859 --c;
860 buf[c] = '\0';
861 return wxString::FromAscii( buf );
862 }
863 wxFAIL_MSG( _T("uname failed") );
864 return _T("");
bdc72a22
VZ
865}
866
e2478fde 867#endif // !__WXMAC__
bd3277fe 868
c1cb4153
VZ
869unsigned long wxGetProcessId()
870{
871 return (unsigned long)getpid();
872}
873
9d8aca48 874wxMemorySize wxGetFreeMemory()
bd3277fe
VZ
875{
876#if defined(__LINUX__)
877 // get it from /proc/meminfo
878 FILE *fp = fopen("/proc/meminfo", "r");
879 if ( fp )
880 {
881 long memFree = -1;
882
883 char buf[1024];
884 if ( fgets(buf, WXSIZEOF(buf), fp) && fgets(buf, WXSIZEOF(buf), fp) )
885 {
886 long memTotal, memUsed;
887 sscanf(buf, "Mem: %ld %ld %ld", &memTotal, &memUsed, &memFree);
888 }
889
890 fclose(fp);
891
9d8aca48 892 return (wxMemorySize)memFree;
bd3277fe
VZ
893 }
894#elif defined(__SUN__) && defined(_SC_AVPHYS_PAGES)
9d8aca48 895 return (wxMemorySize)(sysconf(_SC_AVPHYS_PAGES)*sysconf(_SC_PAGESIZE));
bd3277fe
VZ
896//#elif defined(__FREEBSD__) -- might use sysctl() to find it out, probably
897#endif
898
899 // can't find it out
900 return -1;
901}
902
eadd7bd2
VZ
903bool wxGetDiskSpace(const wxString& path, wxLongLong *pTotal, wxLongLong *pFree)
904{
9952adac 905#if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
fbfb3fb3 906 // the case to "char *" is needed for AIX 4.3
85da04e9
VZ
907 wxStatfs_t fs;
908 if ( wxStatfs((char *)(const char*)path.fn_str(), &fs) != 0 )
eadd7bd2 909 {
401eb3de 910 wxLogSysError( wxT("Failed to get file system statistics") );
eadd7bd2 911
9d8aca48 912 return false;
eadd7bd2
VZ
913 }
914
125cb99b
VZ
915 // under Solaris we also have to use f_frsize field instead of f_bsize
916 // which is in general a multiple of f_frsize
917#ifdef HAVE_STATVFS
918 wxLongLong blockSize = fs.f_frsize;
919#else // HAVE_STATFS
920 wxLongLong blockSize = fs.f_bsize;
921#endif // HAVE_STATVFS/HAVE_STATFS
9952adac 922
eadd7bd2
VZ
923 if ( pTotal )
924 {
125cb99b 925 *pTotal = wxLongLong(fs.f_blocks) * blockSize;
eadd7bd2
VZ
926 }
927
928 if ( pFree )
929 {
125cb99b 930 *pFree = wxLongLong(fs.f_bavail) * blockSize;
eadd7bd2
VZ
931 }
932
9d8aca48 933 return true;
125cb99b 934#else // !HAVE_STATFS && !HAVE_STATVFS
9d8aca48 935 return false;
125cb99b 936#endif // HAVE_STATFS
eadd7bd2
VZ
937}
938
8fd0d89b
VZ
939// ----------------------------------------------------------------------------
940// env vars
941// ----------------------------------------------------------------------------
942
97b305b7 943bool wxGetEnv(const wxString& var, wxString *value)
308978f6
VZ
944{
945 // wxGetenv is defined as getenv()
946 wxChar *p = wxGetenv(var);
947 if ( !p )
9d8aca48 948 return false;
308978f6
VZ
949
950 if ( value )
951 {
952 *value = p;
953 }
954
9d8aca48 955 return true;
308978f6
VZ
956}
957
8fd0d89b
VZ
958bool wxSetEnv(const wxString& variable, const wxChar *value)
959{
960#if defined(HAVE_SETENV)
d90b2df8
VZ
961 return setenv(variable.mb_str(),
962 value ? (const char *)wxString(value).mb_str()
963 : NULL,
964 1 /* overwrite */) == 0;
8fd0d89b
VZ
965#elif defined(HAVE_PUTENV)
966 wxString s = variable;
967 if ( value )
968 s << _T('=') << value;
969
970 // transform to ANSI
67479dbd 971 const wxWX2MBbuf p = s.mb_str();
8fd0d89b
VZ
972
973 // the string will be free()d by libc
974 char *buf = (char *)malloc(strlen(p) + 1);
975 strcpy(buf, p);
976
977 return putenv(buf) == 0;
978#else // no way to set an env var
67479dbd 979 return false;
8fd0d89b
VZ
980#endif
981}
982
a37a5a73
VZ
983// ----------------------------------------------------------------------------
984// signal handling
985// ----------------------------------------------------------------------------
986
987#if wxUSE_ON_FATAL_EXCEPTION
988
989#include <signal.h>
990
90350682 991extern "C" void wxFatalSignalHandler(wxTYPE_SA_HANDLER)
a37a5a73
VZ
992{
993 if ( wxTheApp )
994 {
995 // give the user a chance to do something special about this
996 wxTheApp->OnFatalException();
997 }
998
999 abort();
1000}
1001
1002bool wxHandleFatalExceptions(bool doit)
1003{
1004 // old sig handlers
9d8aca48 1005 static bool s_savedHandlers = false;
a37a5a73
VZ
1006 static struct sigaction s_handlerFPE,
1007 s_handlerILL,
1008 s_handlerBUS,
1009 s_handlerSEGV;
1010
9d8aca48 1011 bool ok = true;
a37a5a73
VZ
1012 if ( doit && !s_savedHandlers )
1013 {
1014 // install the signal handler
1015 struct sigaction act;
1016
1017 // some systems extend it with non std fields, so zero everything
1018 memset(&act, 0, sizeof(act));
1019
1020 act.sa_handler = wxFatalSignalHandler;
1021 sigemptyset(&act.sa_mask);
1022 act.sa_flags = 0;
1023
1024 ok &= sigaction(SIGFPE, &act, &s_handlerFPE) == 0;
1025 ok &= sigaction(SIGILL, &act, &s_handlerILL) == 0;
1026 ok &= sigaction(SIGBUS, &act, &s_handlerBUS) == 0;
1027 ok &= sigaction(SIGSEGV, &act, &s_handlerSEGV) == 0;
1028 if ( !ok )
1029 {
1030 wxLogDebug(_T("Failed to install our signal handler."));
1031 }
1032
9d8aca48 1033 s_savedHandlers = true;
a37a5a73
VZ
1034 }
1035 else if ( s_savedHandlers )
1036 {
1037 // uninstall the signal handler
1038 ok &= sigaction(SIGFPE, &s_handlerFPE, NULL) == 0;
1039 ok &= sigaction(SIGILL, &s_handlerILL, NULL) == 0;
1040 ok &= sigaction(SIGBUS, &s_handlerBUS, NULL) == 0;
1041 ok &= sigaction(SIGSEGV, &s_handlerSEGV, NULL) == 0;
1042 if ( !ok )
1043 {
1044 wxLogDebug(_T("Failed to uninstall our signal handler."));
1045 }
1046
9d8aca48 1047 s_savedHandlers = false;
a37a5a73
VZ
1048 }
1049 //else: nothing to do
1050
1051 return ok;
1052}
1053
1054#endif // wxUSE_ON_FATAL_EXCEPTION
1055
518b5d2f
VZ
1056// ----------------------------------------------------------------------------
1057// error and debug output routines (deprecated, use wxLog)
1058// ----------------------------------------------------------------------------
1059
73deed44
VZ
1060#if WXWIN_COMPATIBILITY_2_2
1061
518b5d2f
VZ
1062void wxDebugMsg( const char *format, ... )
1063{
1064 va_list ap;
1065 va_start( ap, format );
1066 vfprintf( stderr, format, ap );
1067 fflush( stderr );
1068 va_end(ap);
1069}
1070
1071void wxError( const wxString &msg, const wxString &title )
1072{
05079acc 1073 wxFprintf( stderr, _("Error ") );
223d09f6
KB
1074 if (!title.IsNull()) wxFprintf( stderr, wxT("%s "), WXSTRINGCAST(title) );
1075 if (!msg.IsNull()) wxFprintf( stderr, wxT(": %s"), WXSTRINGCAST(msg) );
1076 wxFprintf( stderr, wxT(".\n") );
518b5d2f
VZ
1077}
1078
1079void wxFatalError( const wxString &msg, const wxString &title )
1080{
05079acc 1081 wxFprintf( stderr, _("Error ") );
223d09f6
KB
1082 if (!title.IsNull()) wxFprintf( stderr, wxT("%s "), WXSTRINGCAST(title) );
1083 if (!msg.IsNull()) wxFprintf( stderr, wxT(": %s"), WXSTRINGCAST(msg) );
1084 wxFprintf( stderr, wxT(".\n") );
518b5d2f
VZ
1085 exit(3); // the same exit code as for abort()
1086}
93ccaed8 1087
73deed44
VZ
1088#endif // WXWIN_COMPATIBILITY_2_2
1089
ec67cff1 1090#endif // wxUSE_BASE
e2478fde
VZ
1091
1092#if wxUSE_GUI
1093
1094// ----------------------------------------------------------------------------
1095// wxExecute support
1096// ----------------------------------------------------------------------------
1097
1098// Darwin doesn't use the same process end detection mechanisms so we don't
1099// need wxExecute-related helpers for it
1100#if !(defined(__DARWIN__) && defined(__WXMAC__))
1101
1102bool wxGUIAppTraits::CreateEndProcessPipe(wxExecuteData& execData)
1103{
1104 return execData.pipeEndProcDetect.Create();
1105}
1106
1107bool wxGUIAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData& execData, int fd)
1108{
46446cc2 1109 return fd == (execData.pipeEndProcDetect)[wxPipe::Write];
e2478fde
VZ
1110}
1111
1112void wxGUIAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData& execData)
1113{
1114 execData.pipeEndProcDetect.Detach(wxPipe::Write);
1115 execData.pipeEndProcDetect.Close();
1116}
1117
1118#else // !Darwin
1119
1120bool wxGUIAppTraits::CreateEndProcessPipe(wxExecuteData& WXUNUSED(execData))
1121{
1122 return true;
1123}
1124
1125bool
1126wxGUIAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData& WXUNUSED(execData),
1127 int WXUNUSED(fd))
1128{
1129 return false;
1130}
1131
1132void
1133wxGUIAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData& WXUNUSED(execData))
1134{
1135 // nothing to do here, we don't use the pipe
1136}
1137
1138#endif // !Darwin/Darwin
1139
1140int wxGUIAppTraits::WaitForChild(wxExecuteData& execData)
1141{
1142 wxEndProcessData *endProcData = new wxEndProcessData;
1143
f38f6899
VZ
1144 const int flags = execData.flags;
1145
e2478fde
VZ
1146 // wxAddProcessCallback is now (with DARWIN) allowed to call the
1147 // callback function directly if the process terminates before
1148 // the callback can be added to the run loop. Set up the endProcData.
f38f6899 1149 if ( flags & wxEXEC_SYNC )
e2478fde
VZ
1150 {
1151 // we may have process for capturing the program output, but it's
1152 // not used in wxEndProcessData in the case of sync execution
1153 endProcData->process = NULL;
1154
1155 // sync execution: indicate it by negating the pid
1156 endProcData->pid = -execData.pid;
1157 }
1158 else
1159 {
1160 // async execution, nothing special to do -- caller will be
1161 // notified about the process termination if process != NULL, endProcData
1162 // will be deleted in GTK_EndProcessDetector
1163 endProcData->process = execData.process;
1164 endProcData->pid = execData.pid;
1165 }
1166
1167
f7ef0602 1168#if defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__))
e2478fde
VZ
1169 endProcData->tag = wxAddProcessCallbackForPid(endProcData, execData.pid);
1170#else
1171 endProcData->tag = wxAddProcessCallback
1172 (
1173 endProcData,
1174 execData.pipeEndProcDetect.Detach(wxPipe::Read)
1175 );
1176
1177 execData.pipeEndProcDetect.Close();
f7ef0602 1178#endif // defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__))
e2478fde 1179
f38f6899 1180 if ( flags & wxEXEC_SYNC )
e2478fde
VZ
1181 {
1182 wxBusyCursor bc;
f38f6899
VZ
1183 wxWindowDisabler *wd = flags & wxEXEC_NODISABLE ? NULL
1184 : new wxWindowDisabler;
e2478fde
VZ
1185
1186 // endProcData->pid will be set to 0 from GTK_EndProcessDetector when the
1187 // process terminates
1188 while ( endProcData->pid != 0 )
1189 {
05df0f1b
VZ
1190 bool idle = true;
1191
e2478fde
VZ
1192#if wxUSE_STREAMS
1193 if ( execData.bufOut )
05df0f1b 1194 {
e2478fde 1195 execData.bufOut->Update();
05df0f1b
VZ
1196 idle = false;
1197 }
e2478fde
VZ
1198
1199 if ( execData.bufErr )
05df0f1b 1200 {
e2478fde 1201 execData.bufErr->Update();
05df0f1b
VZ
1202 idle = false;
1203 }
e2478fde
VZ
1204#endif // wxUSE_STREAMS
1205
1012c2ce 1206 // don't consume 100% of the CPU while we're sitting in this
05df0f1b
VZ
1207 // loop
1208 if ( idle )
39ef7151 1209 wxMilliSleep(1);
05df0f1b 1210
e2478fde
VZ
1211 // give GTK+ a chance to call GTK_EndProcessDetector here and
1212 // also repaint the GUI
1213 wxYield();
1214 }
1215
1216 int exitcode = endProcData->exitcode;
1217
f38f6899 1218 delete wd;
e2478fde
VZ
1219 delete endProcData;
1220
1221 return exitcode;
1222 }
1223 else // async execution
1224 {
1225 return execData.pid;
1226 }
1227}
1228
2dbc444a
RD
1229#endif // wxUSE_GUI
1230#if wxUSE_BASE
1231
e2478fde
VZ
1232void wxHandleProcessTermination(wxEndProcessData *proc_data)
1233{
1234 // notify user about termination if required
1235 if ( proc_data->process )
1236 {
1237 proc_data->process->OnTerminate(proc_data->pid, proc_data->exitcode);
1238 }
1239
1240 // clean up
1241 if ( proc_data->pid > 0 )
1242 {
1243 delete proc_data;
1244 }
1245 else
1246 {
1247 // let wxExecute() know that the process has terminated
1248 proc_data->pid = 0;
1249 }
1250}
1251
2dbc444a 1252#endif // wxUSE_BASE