git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20115
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// process management
// ----------------------------------------------------------------------------
// process management
// ----------------------------------------------------------------------------
// structure used to pass parameters from wxKill() to wxEnumFindByPidProc()
struct wxFindByPidParams
{
// structure used to pass parameters from wxKill() to wxEnumFindByPidProc()
struct wxFindByPidParams
{
int wxKill(long pid, wxSignal sig, wxKillError *krc)
{
int wxKill(long pid, wxSignal sig, wxKillError *krc)
{
// get the process handle to operate on
HANDLE hProcess = ::OpenProcess(SYNCHRONIZE |
PROCESS_TERMINATE |
// get the process handle to operate on
HANDLE hProcess = ::OpenProcess(SYNCHRONIZE |
PROCESS_TERMINATE |
// the return code is the same as from Unix kill(): 0 if killed
// successfully or -1 on error
// the return code is the same as from Unix kill(): 0 if killed
// successfully or -1 on error
- if ( sig == wxSIGNONE )
- {
- if ( ok && rc == STILL_ACTIVE )
- {
- // there is such process => success
- return 0;
- }
- }
- else // not SIGNONE
+ //
+ // be careful to interpret rc correctly: for wxSIGNONE we return success if
+ // the process exists, for all the other sig values -- if it doesn't
+ if ( ok &&
+ ((sig == wxSIGNONE) == (rc == STILL_ACTIVE)) )
- if ( ok && rc != STILL_ACTIVE )
- // killed => success
- return 0;
-#else // Win16
- wxFAIL_MSG( _T("not implemented") );
-#endif // Win32/Win16