Commit 07931f2d authored by Alexandre Julliard's avatar Alexandre Julliard

Removed no longer needed SIGNAL_Unblock() function.

parent f405629e
......@@ -241,8 +241,6 @@ void WINAPI EXC_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
if (send_debug_event( rec, TRUE, context ) == DBG_CONTINUE) return; /* continue execution */
SIGNAL_Unblock(); /* we may be in a signal handler, and exception handlers may jump out */
if (call_vectored_handlers( rec, context ) == EXCEPTION_CONTINUE_EXECUTION) return;
frame = NtCurrentTeb()->Tib.ExceptionList;
......
......@@ -1402,20 +1402,6 @@ void SIGNAL_Block(void)
}
/***********************************************************************
* SIGNAL_Unblock
*
* Unblock signals. Called from EXC_RtlRaiseException.
*/
void SIGNAL_Unblock(void)
{
sigset_t all_sigs;
sigfillset( &all_sigs );
sigprocmask( SIG_UNBLOCK, &all_sigs, NULL );
}
/**********************************************************************
* SIGNAL_Reset
*
......
......@@ -668,20 +668,6 @@ void SIGNAL_Block(void)
}
/***********************************************************************
* SIGNAL_Unblock
*
* Unblock signals. Called from EXC_RtlRaiseException.
*/
void SIGNAL_Unblock(void)
{
sigset_t all_sigs;
sigfillset( &all_sigs );
sigprocmask( SIG_UNBLOCK, &all_sigs, NULL );
}
/**********************************************************************
* SIGNAL_Reset
*
......
......@@ -466,20 +466,6 @@ void SIGNAL_Block(void)
}
/***********************************************************************
* SIGNAL_Unblock
*
* Unblock signals. Called from EXC_RtlRaiseException.
*/
void SIGNAL_Unblock(void)
{
sigset_t all_sigs;
sigfillset( &all_sigs );
sigprocmask( SIG_UNBLOCK, &all_sigs, NULL );
}
/**********************************************************************
* SIGNAL_Reset
*
......
......@@ -161,7 +161,6 @@ extern void DECLSPEC_NORETURN SYSDEPS_AbortThread( int status );
/* signal handling */
extern BOOL SIGNAL_Init(void);
extern void SIGNAL_Block(void);
extern void SIGNAL_Unblock(void);
extern void SIGNAL_Reset(void);
#endif /* __WINE_THREAD_H */
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