Ignore:
Timestamp:
Jun 4, 2010, 3:11:43 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: merged changes from 3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/lib/fault.c

    r414 r454  
    5454        if (cont_fn) {
    5555                cont_fn(NULL);
     56#ifndef __OS2__ /* don't use the built in signal capture stuff - prefer native handling of errors */
    5657#ifdef SIGSEGV
    5758                CatchSignal(SIGSEGV,SIGNAL_CAST SIG_DFL);
     
    6263#ifdef SIGABRT
    6364                CatchSignal(SIGABRT,SIGNAL_CAST SIG_DFL);
     65#endif
    6466#endif
    6567                return; /* this should cause a core dump */
     
    8385        cont_fn = fn;
    8486
     87#ifndef __OS2__ /* don't use the built in signal capture stuff - prefer native handling of errors */
    8588#ifdef SIGSEGV
    8689        CatchSignal(SIGSEGV,SIGNAL_CAST sig_fault);
     
    9194#ifdef SIGABRT
    9295        CatchSignal(SIGABRT,SIGNAL_CAST sig_fault);
     96#endif
    9397#endif
    9498}
Note: See TracChangeset for help on using the changeset viewer.