You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2017/10/25 17:33:09 UTC

svn commit: r1813324 - /commons/proper/daemon/trunk/src/native/windows/src/rprocess.c

Author: markt
Date: Wed Oct 25 17:33:09 2017
New Revision: 1813324

URL: http://svn.apache.org/viewvc?rev=1813324&view=rev
Log:
Remove code that has been dis

Modified:
    commons/proper/daemon/trunk/src/native/windows/src/rprocess.c

Modified: commons/proper/daemon/trunk/src/native/windows/src/rprocess.c
URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/windows/src/rprocess.c?rev=1813324&r1=1813323&r2=1813324&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/windows/src/rprocess.c (original)
+++ commons/proper/daemon/trunk/src/native/windows/src/rprocess.c Wed Oct 25 17:33:09 2017
@@ -121,15 +121,6 @@ static DWORD WINAPI __apxProcWorkerThrea
         GetExitCodeProcess(lpProc->stProcInfo.hProcess, &dwExitCode);
         apxLogWrite(APXLOG_MARK_DEBUG "Child process exit code %d", dwExitCode);
         apxSetVmExitCode(dwExitCode);
-
-#if 0
-        if (hProcess->fnCallback)
-            (*hProcess->fnCallback)(hProcess, WM_QUIT, (WPARAM)dwExitCode, 0);
-        lpProc->dwChildStatus &= ~CHILD_RUNNING;
-        GetExitCodeProcess(lpProc->stProcInfo.hProcess, &dwExitCode);
-
-        /* Close that handle */
-#endif
     }
     ExitThread(0);
     return 0;