mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The declaration of sigaction was missing a `const'.
This commit is contained in:
parent
52a69cb00b
commit
4baa77295e
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ struct sigaction {
|
|||
int sa_flags;
|
||||
};
|
||||
.Ed
|
||||
.Fn sigaction "int sig" "struct sigaction *act" "struct sigaction *oact"
|
||||
.Fn sigaction "int sig" "const struct sigaction *act" "struct sigaction *oact"
|
||||
.Sh DESCRIPTION
|
||||
The system defines a set of signals that may be delivered to a process.
|
||||
Signal delivery resembles the occurrence of a hardware interrupt:
|
||||
|
|
|
|||
Loading…
Reference in a new issue