mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 01:38:57 +00:00
style(9): wrap at 80 columns.
This commit is contained in:
parent
97054a769f
commit
aa0b7126ba
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125728
@ -109,7 +109,8 @@ sigstring_to_signum(char *sig)
|
||||
if (strncasecmp(sig, "sig", 3) == 0)
|
||||
sig += 3;
|
||||
for (n = 1; n < sys_nsig; n++)
|
||||
if (sys_signame[n] && strcasecmp(sys_signame[n], sig) == 0)
|
||||
if (sys_signame[n] &&
|
||||
strcasecmp(sys_signame[n], sig) == 0)
|
||||
return (n);
|
||||
}
|
||||
return (-1);
|
||||
@ -413,8 +414,9 @@ dotrap(void)
|
||||
gotsig[i] = 0;
|
||||
if (trap[i]) {
|
||||
/*
|
||||
* Ignore SIGCHLD to avoid infinite recursion
|
||||
* if the trap action does a fork.
|
||||
* Ignore SIGCHLD to avoid infinite
|
||||
* recursion if the trap action does
|
||||
* a fork.
|
||||
*/
|
||||
if (i == SIGCHLD)
|
||||
ignore_sigchld++;
|
||||
|
Loading…
Reference in New Issue
Block a user