Changeset a4da45e for libcfa/src/bits/signal.hfa
- Timestamp:
- Feb 26, 2024, 3:53:42 AM (20 months ago)
- Branches:
- master
- Children:
- 3f9a8d0
- Parents:
- 0522ebe (diff), 022bce0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
libcfa/src/bits/signal.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/signal.hfa
r0522ebe ra4da45e 34 34 act.sa_sigaction = (void (*)(int, siginfo_t *, void *))handler; 35 35 sigemptyset( &act.sa_mask ); 36 sigaddset( &act.sa_mask, SIGALRM ); // disabled during signal handler36 sigaddset( &act.sa_mask, SIGALRM ); // disabled during signal handler 37 37 sigaddset( &act.sa_mask, SIGUSR1 ); 38 38 sigaddset( &act.sa_mask, SIGSEGV ); … … 40 40 sigaddset( &act.sa_mask, SIGILL ); 41 41 sigaddset( &act.sa_mask, SIGFPE ); 42 sigaddset( &act.sa_mask, SIGHUP ); // revert to default on second delivery42 sigaddset( &act.sa_mask, SIGHUP ); // revert to default on second delivery 43 43 sigaddset( &act.sa_mask, SIGTERM ); 44 44 sigaddset( &act.sa_mask, SIGINT );
Note:
See TracChangeset
for help on using the changeset viewer.