ingo_weinhold@xxxxxx wrote: > + // The terminal-sent stop signals are > allowed to stop the > + // process only, if it doesn't belong > to an orphaned process > + // group. Otherwise the signal must be > discarded. > + team->LockProcessGroup(); > + AutoLocker<ProcessGroup> > groupLocker(team->group, true); > + if (signal->Number() != SIGSTOP > + && team->group->IsOrphaned()) { > + continue; Doesn't this reverse the logic, ie. ignores all but stop signals for orphaned processes? Bye, Axel.