Home | History | Annotate | Download | only in libprocessgroup

Lines Matching defs:pids

170     // We separate all of the pids in the cgroup into those pids that are also the leaders of
171 // process groups (stored in the pgids set) and those that are not (stored in the pids set).
174 std::set<pid_t> pids;
191 pids.emplace(pid);
195 // Erase all pids that will be killed when we kill the process groups.
196 for (auto it = pids.begin(); it != pids.end();) {
199 it = pids.erase(it);
215 // Kill remaining pids.
216 for (const auto pid : pids) {