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