mirror of
https://github.com/samba-team/samba.git
synced 2025-02-03 13:47:25 +03:00
s4-smbd: Remove obsolete singal type cast from the thread process model.
This commit is contained in:
parent
f33b69753d
commit
95a0ab5f11
@ -459,13 +459,13 @@ setup our recursive fault handlers
|
||||
static void thread_fault_setup(void)
|
||||
{
|
||||
#ifdef SIGSEGV
|
||||
CatchSignal(SIGSEGV,SIGNAL_CAST thread_sig_fault);
|
||||
CatchSignal(SIGSEGV, thread_sig_fault);
|
||||
#endif
|
||||
#ifdef SIGBUS
|
||||
CatchSignal(SIGBUS,SIGNAL_CAST thread_sig_fault);
|
||||
CatchSignal(SIGBUS, thread_sig_fault);
|
||||
#endif
|
||||
#ifdef SIGABRT
|
||||
CatchSignal(SIGABRT,SIGNAL_CAST thread_sig_fault);
|
||||
CatchSignal(SIGABRT, thread_sig_fault);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user