You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
} else {
if (WIFSIGNALED(sig))
sig=WTERMSIG(sig);
elseif (WIFSTOPPED(sig))
sig=WSTOPSIG(sig);
if (1 <= sig&&sig <= SIGCOUNT)
printf("%s\n", sigs[sig]);
elseprintf("%d\n", sig);
}
I know 127 is kind of a special number but i don't understand why it's doing this and i feel like it's undesirable. bash behaves more like i would expect:
$ kill -l 9000
bash: kill: 9000: invalid signal specification
The text was updated successfully, but these errors were encountered:
(unposted)
That's related to this code in
jobs.c
:I know
127
is kind of a special number but i don't understand why it's doing this and i feel like it's undesirable. bash behaves more like i would expect:The text was updated successfully, but these errors were encountered: