-
Notifications
You must be signed in to change notification settings - Fork 483
Expand file tree
/
Copy pathwinprocess_impl.cpp
More file actions
663 lines (577 loc) · 20.5 KB
/
winprocess_impl.cpp
File metadata and controls
663 lines (577 loc) · 20.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : winprocess.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifdef __WXMSW__
#ifdef NTDDI_VERSION
#undef NTDDI_VERSION
#endif
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#define NTDDI_VERSION 0x0A000006
#define _WIN32_WINNT 0x0600
#include "winprocess_impl.h"
#include "StringUtils.h"
#include "clDirChanger.hpp"
#include "file_logger.h"
#include "processreaderthread.h"
#include "procutils.h"
#include <atomic>
#include <thread>
#include <wx/filefn.h>
#include <wx/log.h>
#include <wx/msgqueue.h>
#include <wx/string.h>
using HPCON = VOID*;
#ifndef PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE
#define PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE 0x00020016
#endif
#if defined(_MSC_VER)
constexpr auto CreatePseudoConsoleFunc = &CreatePseudoConsole;
constexpr auto ClosePseudoConsoleFunc = &ClosePseudoConsole;
#else
using CreatePseudoConsole_T = HRESULT(WINAPI*)(COORD size, HANDLE hInput, HANDLE hOutput, DWORD dwFlags, HPCON* phPC);
using ClosePseudoConsole_T = VOID(WINAPI*)(HPCON hPC);
thread_local bool loadOnce = true;
thread_local CreatePseudoConsole_T CreatePseudoConsoleFunc = nullptr;
thread_local ClosePseudoConsole_T ClosePseudoConsoleFunc = nullptr;
#endif
using HPCON = HANDLE;
static bool CheckIsAlive(HANDLE hProcess)
{
DWORD dwExitCode;
if (GetExitCodeProcess(hProcess, &dwExitCode)) {
if (dwExitCode == STILL_ACTIVE)
return true;
}
return false;
}
template <typename T>
bool WriteStdin(const T& buffer, HANDLE hStdin, HANDLE hProcess)
{
DWORD dwMode;
if (hStdin == INVALID_HANDLE_VALUE || hProcess == INVALID_HANDLE_VALUE) {
clWARNING() << "Unable read from process Stdin: invalid handle" << endl;
return false;
}
// Make the pipe to non-blocking mode
dwMode = PIPE_READMODE_BYTE | PIPE_WAIT;
SetNamedPipeHandleState(hStdin, &dwMode, NULL, NULL);
DWORD bytesLeft = buffer.length();
long offset = 0;
static constexpr int max_retry_count = 100;
size_t retryCount = 0;
while (bytesLeft > 0 && (retryCount < max_retry_count)) {
DWORD dwWritten = 0;
if (!WriteFile(hStdin, buffer.c_str() + offset, bytesLeft, &dwWritten, NULL)) {
int errorCode = GetLastError();
LOG_IF_DEBUG { clDEBUG() << ">> WriteStdin: (WriteFile) error:" << errorCode << endl; }
return false;
}
if (!CheckIsAlive(hProcess)) {
LOG_IF_DEBUG { clDEBUG() << "WriteStdin failed. Process is not alive" << endl; }
return false;
}
if (dwWritten == 0) {
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
bytesLeft -= dwWritten;
offset += dwWritten;
++retryCount;
}
if (retryCount >= max_retry_count) {
clERROR() << "Failed to write to process after" << max_retry_count << "retries. Written"
<< (buffer.length() - bytesLeft) << "/" << buffer.length() << "bytes" << endl;
return false;
}
return true;
}
class WXDLLIMPEXP_CL WinWriterThread
{
std::thread* m_thread = nullptr;
wxMessageQueue<std::string> m_outgoingQueue;
std::atomic_bool m_shutdown;
HANDLE m_hProcess = INVALID_HANDLE_VALUE;
HANDLE m_hStdin = INVALID_HANDLE_VALUE;
public:
WinWriterThread(HANDLE hProcess, HANDLE hStdin)
: m_hProcess(hProcess)
, m_hStdin(hStdin)
{
m_shutdown.store(false);
}
~WinWriterThread() = default;
void Start() { m_thread = new std::thread(&WinWriterThread::Entry, this, m_hStdin); }
void Stop()
{
if (m_thread) {
m_shutdown.store(true);
m_thread->join();
wxDELETE(m_thread);
}
}
static void Entry(WinWriterThread* thr, HANDLE hStdin)
{
auto& Q = thr->m_outgoingQueue;
while (!thr->m_shutdown.load()) {
std::string cstr;
if (Q.ReceiveTimeout(50, cstr) == wxMSGQUEUE_NO_ERROR) {
WriteStdin(cstr, hStdin, thr->m_hProcess);
}
}
LOG_IF_TRACE { clDEBUG1() << "Write thread going down"; }
}
void Write(const std::string& buffer) { m_outgoingQueue.Post(buffer); }
};
namespace
{
wxString ArrayJoin(const wxArrayString& args, size_t flags)
{
wxString command;
if (flags & IProcessWrapInShell) {
// CMD /C [command] ...
// Make sure that the first command is wrapped with "" if it contains spaces
LOG_IF_TRACE
{
clDEBUG1() << "==> ArrayJoin called for" << args << endl;
clDEBUG1() << "args[2] is:" << args[2] << endl;
}
if ((args.size() > 3) && (!args[2].StartsWith("\"")) && (args[2].Contains(" "))) {
LOG_IF_DEBUG { clDEBUG() << "==> Fixing" << args << endl; }
wxArrayString tmparr = args;
wxString& firstCommand = tmparr[2];
firstCommand.Prepend("\"").Append("\"");
command = wxJoin(tmparr, ' ', 0);
} else {
command = wxJoin(args, ' ', 0);
}
} else if (flags & IProcessCreateSSH) {
// simple join
command = wxJoin(args, ' ', 0);
} else {
wxArrayString arr;
arr.reserve(args.size());
arr = args;
for (auto& arg : arr) {
if (arg.Contains(" ")) {
// escape any " before we start escaping
arg.Replace("\"", "\\\"");
// now wrap with double quotes
arg.Prepend("\"").Append("\"");
}
command << arg << " ";
}
}
command.Trim().Trim(false);
return command;
}
// Initializes the specified startup info struct with the required properties and
// updates its thread attribute list with the specified ConPTY handle
HRESULT PrepareStartupInformation(HPCON hpc, STARTUPINFOEX* psi)
{
// Prepare Startup Information structure
STARTUPINFOEX si;
ZeroMemory(&si, sizeof(si));
si.StartupInfo.cb = sizeof(STARTUPINFOEX);
// Discover the size required for the list
SIZE_T bytesRequired;
InitializeProcThreadAttributeList(NULL, 1, 0, &bytesRequired);
// Allocate memory to represent the list
si.lpAttributeList = (PPROC_THREAD_ATTRIBUTE_LIST)HeapAlloc(GetProcessHeap(), 0, bytesRequired);
if (!si.lpAttributeList) {
return E_OUTOFMEMORY;
}
// Initialize the list memory location
if (!InitializeProcThreadAttributeList(si.lpAttributeList, 1, 0, &bytesRequired)) {
HeapFree(GetProcessHeap(), 0, si.lpAttributeList);
return HRESULT_FROM_WIN32(GetLastError());
}
// Set the pseudoconsole information into the list
if (!UpdateProcThreadAttribute(
si.lpAttributeList, 0, PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE, hpc, sizeof(hpc), NULL, NULL)) {
HeapFree(GetProcessHeap(), 0, si.lpAttributeList);
return HRESULT_FROM_WIN32(GetLastError());
}
*psi = si;
return S_OK;
}
} // namespace
IProcess* WinProcessImpl::Execute(wxEvtHandler* parent,
const wxArrayString& args,
size_t flags,
const wxString& workingDirectory,
IProcessCallback* cb)
{
wxString cmd = ArrayJoin(args, flags);
LOG_IF_TRACE { clDEBUG1() << "Windows process starting:" << cmd << endl; }
return Execute(parent, cmd, flags, workingDirectory, cb);
}
/*static*/
IProcess* WinProcessImpl::Execute(
wxEvtHandler* parent, const wxString& cmd, size_t flags, const wxString& workingDir, IProcessCallback* cb)
{
SECURITY_ATTRIBUTES saAttr;
BOOL fSuccess;
wxString wd(workingDir);
if (workingDir.IsEmpty()) {
wd = wxGetCwd();
}
clDirChanger dg(wd);
// Set the bInheritHandle flag so pipe handles are inherited.
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
saAttr.bInheritHandle = TRUE;
saAttr.lpSecurityDescriptor = NULL;
WinProcessImpl* prc = new WinProcessImpl(parent);
prc->m_callback = cb;
prc->m_flags = flags;
bool redirectOutput = !(flags & IProcessNoRedirect);
// The steps for redirecting child process's STDOUT:
// 1. Create anonymous pipe to be STDOUT for child process.
// 2. Create a noninheritable duplicate of the read handle and
// close the inheritable read handle.
if (redirectOutput) {
// Create a pipe for the child process's STDOUT.
if (!CreatePipe(&prc->hChildStdoutRd, &prc->hChildStdoutWr, &saAttr, 0)) {
delete prc;
return NULL;
}
// Create noninheritable read handle and close the inheritable read handle.
fSuccess = DuplicateHandle(GetCurrentProcess(),
prc->hChildStdoutRd,
GetCurrentProcess(),
&prc->hChildStdoutRdDup,
0,
FALSE,
DUPLICATE_SAME_ACCESS);
if (!fSuccess) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStdoutRd);
// The steps for redirecting child process's STDERR:
// 1. Create anonymous pipe to be STDERR for child process.
// 2. Create a noninheritable duplicate of the read handle and
// close the inheritable read handle.
// Create a pipe for the child process's STDERR.
if (!CreatePipe(&prc->hChildStderrRd, &prc->hChildStderrWr, &saAttr, 0)) {
delete prc;
return NULL;
}
// Create noninheritable read handle and close the inheritable read handle.
fSuccess = DuplicateHandle(GetCurrentProcess(),
prc->hChildStderrRd,
GetCurrentProcess(),
&prc->hChildStderrRdDup,
0,
FALSE,
DUPLICATE_SAME_ACCESS);
if (!fSuccess) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStderrRd);
// The steps for redirecting child process's STDIN:
// 1. Create anonymous pipe to be STDIN for child process.
// 2. Create a noninheritable duplicate of the write handle,
// and close the inheritable write handle.
// Create a pipe for the child process's STDIN.
if (!CreatePipe(&prc->hChildStdinRd, &prc->hChildStdinWr, &saAttr, 0)) {
delete prc;
return NULL;
}
// Duplicate the write handle to the pipe so it is not inherited.
fSuccess = DuplicateHandle(GetCurrentProcess(),
prc->hChildStdinWr,
GetCurrentProcess(),
&prc->hChildStdinWrDup,
0,
FALSE, // not inherited
DUPLICATE_SAME_ACCESS);
if (!fSuccess) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStdinWr);
}
// Execute the child process
STARTUPINFO siStartInfo;
// Set up members of STARTUPINFO structure.
ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
siStartInfo.cb = sizeof(STARTUPINFO);
siStartInfo.dwFlags = STARTF_USESHOWWINDOW;
if (redirectOutput) {
siStartInfo.dwFlags |= STARTF_USESTDHANDLES;
siStartInfo.hStdInput = prc->hChildStdinRd;
siStartInfo.hStdOutput = prc->hChildStdoutWr;
siStartInfo.hStdError = prc->hChildStderrWr;
}
// Set the window to hide
siStartInfo.wShowWindow = flags & IProcessCreateConsole ? SW_SHOW : SW_HIDE;
DWORD creationFlags = flags & IProcessCreateConsole ? CREATE_NEW_CONSOLE : CREATE_NO_WINDOW;
if (flags & IProcessCreateWithHiddenConsole) {
siStartInfo.wShowWindow = SW_HIDE;
// When redirecting output, we cannot use CREATE_NEW_CONSOLE because Windows
// ignores STARTF_USESTDHANDLES when CREATE_NEW_CONSOLE is set. The child would
// get its own console buffer that we cannot read from. Use CREATE_NO_WINDOW instead.
if (redirectOutput) {
creationFlags = CREATE_NO_WINDOW | CREATE_NEW_PROCESS_GROUP;
} else {
creationFlags = CREATE_NEW_CONSOLE | CREATE_NEW_PROCESS_GROUP;
}
}
LOG_IF_TRACE { clDEBUG1() << "Running process:" << cmd << endl; }
BOOL ret = FALSE;
{
ret = CreateProcess(NULL,
cmd.wchar_str(), // shell line execution command
NULL, // process security attributes
NULL, // primary thread security attributes
TRUE, // handles are inherited
creationFlags, // creation flags
NULL, // use parent's environment
NULL, // CD to tmp dir
&siStartInfo, // STARTUPINFO pointer
&prc->piProcInfo); // receives PROCESS_INFORMATION
}
if (ret) {
prc->dwProcessId = prc->piProcInfo.dwProcessId;
} else {
int err = GetLastError();
wxUnusedVar(err);
wxDELETE(prc);
return NULL;
}
prc->SetPid(prc->dwProcessId);
if (!(prc->m_flags & IProcessCreateSync)) {
prc->StartReaderThread();
}
prc->m_writerThread = new WinWriterThread(prc->piProcInfo.hProcess, prc->hChildStdinWrDup);
prc->m_writerThread->Start();
return prc;
}
WinProcessImpl::WinProcessImpl(wxEvtHandler* parent)
: IProcess(parent)
{
hChildStdinRd = NULL;
hChildStdinWrDup = NULL;
hChildStdoutWr = NULL;
hChildStdoutRdDup = NULL;
hChildStderrWr = NULL;
hChildStderrRdDup = NULL;
piProcInfo.hProcess = NULL;
piProcInfo.hThread = NULL;
}
WinProcessImpl::~WinProcessImpl() { Cleanup(); }
bool WinProcessImpl::Read(wxString& buff, wxString& buffErr, std::string& raw_buff, std::string& raw_buff_err)
{
DWORD le1 = wxNOT_FOUND;
DWORD le2 = wxNOT_FOUND;
buff.clear();
buffErr.clear();
// Sanity
if (!IsRedirect()) {
return false;
}
// Read data from STDOUT and STDERR
if (m_flags & IProcessStderrEvent) {
// we want separate stderr events
if (!DoReadFromPipe(hChildStderrRdDup, buffErr, raw_buff_err)) {
le2 = GetLastError();
}
} else {
if (!DoReadFromPipe(hChildStderrRdDup, buff, raw_buff)) {
le2 = GetLastError();
}
}
// read stdout
if (!DoReadFromPipe(hChildStdoutRdDup, buff, raw_buff)) {
le1 = GetLastError();
}
if ((le1 == ERROR_NO_DATA) && (le2 == ERROR_NO_DATA)) {
if (IsAlive()) {
wxThread::Sleep(1);
return true;
}
}
bool success = !buff.empty() || !buffErr.empty();
if (!success) {
DWORD dwExitCode;
if (GetExitCodeProcess(piProcInfo.hProcess, &dwExitCode)) {
SetProcessExitCode(GetPid(), (int)dwExitCode);
}
}
return success;
}
bool WinProcessImpl::Write(const wxString& buff)
{
// Sanity
return Write(StringUtils::ToStdString(buff));
}
bool WinProcessImpl::Write(const std::string& buff) { return WriteRaw(buff + "\r\n"); }
bool WinProcessImpl::WriteRaw(const wxString& buff) { return WriteRaw(StringUtils::ToStdString(buff)); }
bool WinProcessImpl::WriteRaw(const std::string& buff)
{
// Sanity
if (!IsRedirect()) {
return false;
}
m_writerThread->Write(buff);
return true;
}
bool WinProcessImpl::IsAlive()
{
DWORD dwExitCode;
if (GetExitCodeProcess(piProcInfo.hProcess, &dwExitCode)) {
if (dwExitCode == STILL_ACTIVE)
return true;
}
return false;
}
inline void CLOSE_HANDLE(HANDLE h)
{
if (h != INVALID_HANDLE_VALUE) {
::CloseHandle(h);
}
}
void WinProcessImpl::Cleanup()
{
if (m_writerThread) {
m_writerThread->Stop();
wxDELETE(m_writerThread);
}
if (m_hPseudoConsole) {
ClosePseudoConsoleFunc(m_hPseudoConsole);
m_hPseudoConsole = nullptr;
}
// Under windows, the reader thread is detached
if (m_thr) {
// Stop the reader thread
m_thr->Stop();
delete m_thr;
}
m_thr = NULL;
// terminate the process
if (IsAlive()) {
const auto tree = ProcUtils::GetProcTree(GetPid());
for (const auto& pid : tree) {
// don't kill ourself
if ((long)pid == GetPid()) {
continue;
}
wxLogNull NoLog;
wxKillError rc;
wxKill(pid, wxSIGKILL, &rc);
}
::TerminateProcess(piProcInfo.hProcess, 0);
}
if (IsRedirect()) {
CLOSE_HANDLE(hChildStdinRd);
CLOSE_HANDLE(hChildStdinWrDup);
CLOSE_HANDLE(hChildStdoutWr);
CLOSE_HANDLE(hChildStdoutRdDup);
CLOSE_HANDLE(hChildStderrWr);
CLOSE_HANDLE(hChildStderrRdDup);
}
CLOSE_HANDLE(piProcInfo.hProcess);
CLOSE_HANDLE(piProcInfo.hThread);
hChildStdinRd = INVALID_HANDLE_VALUE;
hChildStdoutRdDup = INVALID_HANDLE_VALUE;
hChildStdoutWr = INVALID_HANDLE_VALUE;
hChildStderrWr = INVALID_HANDLE_VALUE;
hChildStdinWrDup = INVALID_HANDLE_VALUE;
hChildStderrRdDup = INVALID_HANDLE_VALUE;
piProcInfo.hProcess = NULL;
piProcInfo.hThread = NULL;
}
void WinProcessImpl::StartReaderThread()
{
// Launch the 'Reader' thread
m_thr = new ProcessReaderThread();
m_thr->SetProcess(this);
m_thr->SetNotifyWindow(m_parent);
m_thr->Start();
}
bool WinProcessImpl::DoReadFromPipe(HANDLE pipe, wxString& buff, std::string& raw_buff)
{
DWORD dwRead = 0;
DWORD dwMode;
DWORD dwTimeout;
if (pipe == INVALID_HANDLE_VALUE || pipe == 0x0) {
SetLastError(ERROR_NO_DATA);
return false;
}
// Make the pipe to non-blocking mode
dwMode = PIPE_READMODE_BYTE | PIPE_NOWAIT;
dwTimeout = 100;
SetNamedPipeHandleState(pipe, &dwMode, NULL, &dwTimeout);
bool read_something = false;
while (true) {
BOOL bRes = ReadFile(pipe, m_buffer, BUFFER_SIZE - 1, &dwRead, NULL);
if (bRes && (dwRead > 0)) {
wxString tmpBuff;
tmpBuff.reserve(dwRead * 2); // make enough room for the conversion
raw_buff.append(m_buffer, dwRead);
// Success read
tmpBuff = wxString(m_buffer, wxConvUTF8, dwRead);
if (tmpBuff.IsEmpty() && dwRead > 0) {
// conversion failed
tmpBuff = wxString::From8BitData(m_buffer, dwRead);
}
buff.reserve(buff.size() + tmpBuff.size() + 1);
buff.Append(tmpBuff);
read_something = true;
continue;
}
break;
}
return read_something;
}
void WinProcessImpl::Terminate()
{
// terminate the process
if (IsAlive()) {
const std::set<unsigned long> tree = ProcUtils::GetProcTree(GetPid());
for (const auto& pid : tree) {
if ((long)pid == GetPid()) {
continue;
}
wxLogNull NoLOG;
wxKillError rc;
wxKill(pid, wxSIGKILL, &rc);
}
TerminateProcess(piProcInfo.hProcess, 0);
}
}
bool WinProcessImpl::WriteToConsole(const wxString& buff) { return Write(buff); }
void WinProcessImpl::Detach()
{
if (m_thr) {
// Stop the reader thread
m_thr->Stop();
delete m_thr;
}
m_thr = NULL;
}
void WinProcessImpl::Signal(wxSignal sig) { wxKill(GetPid(), sig, NULL, wxKILL_CHILDREN); }
#endif //__WXMSW__