mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-12-01 09:32:08 +03:00
Use sigaction(2) instead of sigset(3) for portability
sigset(3) isn't portable.
This code fails to compile on platforms without sigset(3).
Use sigaction(2).
--
largest_file.c: In function 'main':
largest_file.c:75:9: error: implicit declaration of function 'sigset'; did you mean 'sigvec'? [-Werror=implicit-function-declaration]
(void) sigset(SIGXFSZ, sigxfsz);
^~~~~~
sigvec
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Closes #8593
This commit is contained in:
parent
f0ce0436aa
commit
5b1443c47e
@ -67,12 +67,18 @@ main(int argc, char **argv)
|
|||||||
char mybuf[5] = "aaaa\0";
|
char mybuf[5] = "aaaa\0";
|
||||||
char *testfile;
|
char *testfile;
|
||||||
mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
||||||
|
struct sigaction sa;
|
||||||
|
|
||||||
if (argc != 2) {
|
if (argc != 2) {
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
(void) sigset(SIGXFSZ, sigxfsz);
|
if (sigemptyset(&sa.sa_mask) == -1)
|
||||||
|
return (errno);
|
||||||
|
sa.sa_flags = 0;
|
||||||
|
sa.sa_handler = sigxfsz;
|
||||||
|
if (sigaction(SIGXFSZ, &sa, NULL) == -1)
|
||||||
|
return (errno);
|
||||||
|
|
||||||
testfile = strdup(argv[1]);
|
testfile = strdup(argv[1]);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user