Changeset 618 for vendor/current/lib
- Timestamp:
- Aug 5, 2011, 7:52:23 AM (14 years ago)
- Location:
- vendor/current/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/lib/replace/system/config.m4
r414 r618 2 2 AC_HEADER_DIRENT 3 3 AC_CHECK_HEADERS(fcntl.h sys/fcntl.h sys/resource.h sys/ioctl.h sys/mode.h sys/filio.h sys/fs/s5param.h sys/filsys.h) 4 AC_CHECK_HEADERS(sys/acl.h acl/libacl.h )4 AC_CHECK_HEADERS(sys/acl.h acl/libacl.h sys/file.h) 5 5 6 6 # select -
vendor/current/lib/replace/system/filesys.h
r414 r618 78 78 #endif 79 79 80 #ifdef HAVE_SYS_FILE_H 80 81 #include <sys/file.h> 82 #endif 81 83 82 84 #ifdef HAVE_FCNTL_H -
vendor/current/lib/replace/system/wait.h
r414 r618 45 45 #endif 46 46 47 #ifndef SA_RESETHAND48 #define SA_RESETHAND SA_ONESHOT49 #endif50 51 47 #if !defined(HAVE_SIG_ATOMIC_T_TYPE) 52 48 typedef int sig_atomic_t; -
vendor/current/lib/tevent/testsuite.c
r414 r618 102 102 se1 = event_add_signal(ev_ctx, ev_ctx, SIGALRM, SA_RESTART, count_handler, &alarm_count); 103 103 #endif 104 #ifdef SA_RESETHAND 104 105 se2 = event_add_signal(ev_ctx, ev_ctx, SIGALRM, SA_RESETHAND, count_handler, &alarm_count); 106 #endif 105 107 #ifdef SA_SIGINFO 106 108 se3 = event_add_signal(ev_ctx, ev_ctx, SIGUSR1, SA_SIGINFO, count_handler, &info_count); -
vendor/current/lib/tevent/tevent_signal.c
r427 r618 356 356 se->private_data); 357 357 } 358 #ifdef SA_RESETHAND 358 359 if (se->sa_flags & SA_RESETHAND) { 359 360 talloc_free(se); 360 361 } 362 #endif 361 363 continue; 362 364 } 363 365 #endif 364 366 se->handler(ev, se, i, count, NULL, se->private_data); 367 #ifdef SA_RESETHAND 365 368 if (se->sa_flags & SA_RESETHAND) { 366 369 talloc_free(se); 367 370 } 371 #endif 368 372 } 369 373
Note:
See TracChangeset
for help on using the changeset viewer.