mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Make signal handler safer.
Submitted by: Jaakko Heinonen <jh@saunalahti.fi>
This commit is contained in:
parent
cd5c694a56
commit
11a2f37eed
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=186444
@ -58,7 +58,8 @@ struct track_info {
|
|||||||
int addr;
|
int addr;
|
||||||
};
|
};
|
||||||
static struct track_info tracks[100];
|
static struct track_info tracks[100];
|
||||||
static int global_fd_for_cleanup, quiet, verbose, saved_block_size, notracks;
|
static int quiet, verbose, saved_block_size, notracks;
|
||||||
|
static volatile int global_fd_for_cleanup;
|
||||||
|
|
||||||
void add_track(char *, int, int, int);
|
void add_track(char *, int, int, int);
|
||||||
void do_DAO(int fd, int, int);
|
void do_DAO(int fd, int, int);
|
||||||
@ -716,11 +717,12 @@ cleanup_flush(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
cleanup_signal(int sig __unused)
|
cleanup_signal(int sig)
|
||||||
{
|
{
|
||||||
cleanup_flush();
|
signal(sig, SIG_IGN);
|
||||||
fprintf(stderr, "\n");
|
ioctl(global_fd_for_cleanup, CDRIOCFLUSH);
|
||||||
errx(EXIT_FAILURE, "Aborted");
|
write(STDERR_FILENO, "\nAborted\n", 10);
|
||||||
|
_exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user