Ignore:
Timestamp:
Aug 5, 2011, 7:52:23 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.11

Location:
vendor/current/lib/tevent
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/lib/tevent/testsuite.c

    r414 r618  
    102102        se1 = event_add_signal(ev_ctx, ev_ctx, SIGALRM, SA_RESTART, count_handler, &alarm_count);
    103103#endif
     104#ifdef SA_RESETHAND
    104105        se2 = event_add_signal(ev_ctx, ev_ctx, SIGALRM, SA_RESETHAND, count_handler, &alarm_count);
     106#endif
    105107#ifdef SA_SIGINFO
    106108        se3 = event_add_signal(ev_ctx, ev_ctx, SIGUSR1, SA_SIGINFO, count_handler, &info_count);
  • vendor/current/lib/tevent/tevent_signal.c

    r427 r618  
    356356                                                    se->private_data);
    357357                                }
     358#ifdef SA_RESETHAND
    358359                                if (se->sa_flags & SA_RESETHAND) {
    359360                                        talloc_free(se);
    360361                                }
     362#endif
    361363                                continue;
    362364                        }
    363365#endif
    364366                        se->handler(ev, se, i, count, NULL, se->private_data);
     367#ifdef SA_RESETHAND
    365368                        if (se->sa_flags & SA_RESETHAND) {
    366369                                talloc_free(se);
    367370                        }
     371#endif
    368372                }
    369373
Note: See TracChangeset for help on using the changeset viewer.