Kept SIGWINCH from spoiling a burn.

This commit is contained in:
Thomas Schmitt 2007-01-11 13:31:28 +00:00
parent ef6212f4ec
commit 0f34fb03a0
5 changed files with 9 additions and 9 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.01.11.131106"
#define Cdrskin_timestamP "2007.01.11.131302"

View File

@ -63,9 +63,9 @@ static int signal_list_count= 24;
/* Signals not to be caught */
static int non_signal_list[]= {
SIGKILL, SIGCHLD, SIGSTOP, SIGURG, -1
SIGKILL, SIGCHLD, SIGSTOP, SIGURG, SIGWINCH, -1
};
static int non_signal_list_count= 4;
static int non_signal_list_count= 5;
#endif /* Cleanup_has_no_libburn_os_H */

View File

@ -63,9 +63,9 @@ static int signal_list_count= 24;
/* Signals not to be caught */
static int non_signal_list[]= {
SIGKILL, SIGCHLD, SIGSTOP, SIGURG, -1
SIGKILL, SIGCHLD, SIGSTOP, SIGURG, SIGWINCH, -1
};
static int non_signal_list_count= 4;
static int non_signal_list_count= 5;
#endif /* Cleanup_has_no_libburn_os_H */

View File

@ -37,10 +37,10 @@
/** To list all signals which shall surely not be caught */
#define BURN_OS_NON_SIGNAL_MACRO_LIST \
SIGKILL, SIGCHLD, SIGSTOP, SIGURG
SIGKILL, SIGCHLD, SIGSTOP, SIGURG, SIGWINCH
/* The number of above list items */
#define BURN_OS_NON_SIGNAL_COUNT 4
#define BURN_OS_NON_SIGNAL_COUNT 5
/* The maximum size for a (SCSI) i/o transaction */

View File

@ -34,10 +34,10 @@
/** To list all signals which shall surely not be caught */
#define BURN_OS_NON_SIGNAL_MACRO_LIST \
SIGKILL, SIGCHLD, SIGSTOP, SIGURG
SIGKILL, SIGCHLD, SIGSTOP, SIGURG, SIGWINCH
/* The number of above list items */
#define BURN_OS_NON_SIGNAL_COUNT 4
#define BURN_OS_NON_SIGNAL_COUNT 5
/* The maximum size for a (SCSI) i/o transaction */