Commit 0e37eaac authored by Alexandre Julliard's avatar Alexandre Julliard

Commented out exit() call on ExitProcess for now.

parent b73421dd
......@@ -636,7 +636,9 @@ void WINAPI ExitProcess( DWORD status )
req->handle = GetCurrentProcess();
req->exit_code = status;
server_call( REQ_TERMINATE_PROCESS );
exit( status );
/* FIXME: need separate address spaces for that */
/* exit( status ); */
SYSDEPS_ExitThread( status );
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment