Skip to content
Snippets Groups Projects
Commit 0e37eaac authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Commented out exit() call on ExitProcess for now.

parent b73421dd
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
}
/***********************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment