mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
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
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ signals_exit(void)
|
|||
const int sig = exit_signal;
|
||||
|
||||
if (sig != 0) {
|
||||
#ifdef TUKLIB_DOSLIKE
|
||||
#if defined(TUKLIB_DOSLIKE) || defined(__VMS)
|
||||
// Don't raise(), set only exit status. This avoids
|
||||
// printing unwanted message about SIGINT when the user
|
||||
// presses C-c.
|
||||
|
|
Loading…
Reference in a new issue