Commit 4a589081 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Block signals during process-wide exit.

parent 4f640fa9
......@@ -475,6 +475,7 @@ void WINAPI RtlExitUserThread( ULONG status )
if (interlocked_xchg_add( &nb_threads, -1 ) <= 1)
{
LdrShutdownProcess();
pthread_sigmask( SIG_BLOCK, &server_block_set, NULL );
signal_exit_process( 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