Patch annotation in sigdeferstop

Probability flipped since sigdefer handling was moved away from regular VOP
calls.
This commit is contained in:
Mateusz Guzik 2020-12-13 21:30:42 +00:00
parent 8ab96e265d
commit de0b2d4f47
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=368616

View file

@ -367,7 +367,7 @@ static inline int
sigdeferstop(int mode)
{
if (__predict_true(mode == SIGDEFERSTOP_NOP))
if (__predict_false(mode == SIGDEFERSTOP_NOP))
return (SIGDEFERSTOP_VAL_NCHG);
return (sigdeferstop_impl(mode));
}