-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Description
line 232 of check_rc_pids.c:
if (! (_kill0 == 1 && _gsid0 == 0 && _gpid0 == 0 && _gsid1 == 0) )
The prerequisite for this step is _gsid0 == _gsid1
, so _gsid1 == 0
is redundant. And this problem is not important. There is another problem:
line 245:
if (! (_kill1 == 1 && _gsid1 == 0 && _gpid0 == 0 && _gsid1 == 0) )
_gsid1 == 0
appears twice. Is that a redundancy or it should be _gsid0 == 0 && _gsid1 ==0
?
Metadata
Metadata
Assignees
Labels
No labels