xz: Avoid raise() also on OpenVMS.
This is similar to DOS/DJGPP that killing the program with a signal will print a backtrace or a similar message.
This commit is contained in:
parent
ac462b1c47
commit
f0fa880d24
|
@ -148,7 +148,7 @@ signals_exit(void)
|
||||||
const int sig = exit_signal;
|
const int sig = exit_signal;
|
||||||
|
|
||||||
if (sig != 0) {
|
if (sig != 0) {
|
||||||
#ifdef TUKLIB_DOSLIKE
|
#if defined(TUKLIB_DOSLIKE) || defined(__VMS)
|
||||||
// Don't raise(), set only exit status. This avoids
|
// Don't raise(), set only exit status. This avoids
|
||||||
// printing unwanted message about SIGINT when the user
|
// printing unwanted message about SIGINT when the user
|
||||||
// presses C-c.
|
// presses C-c.
|
||||||
|
|
Loading…
Reference in New Issue