Deleted Added
sdiff udiff text old ( 12998:68d2c7538b82 ) new ( 12999:1325c18d9ffd )
full compact
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 164 unchanged lines hidden (view full) ---

173}
174
175void
176Process::disable(bool inc_kids)
177{
178 if (inc_kids)
179 forEachKid([](Process *p) { p->disable(true); });
180
181 _disabled = true;
182}
183
184void
185Process::enable(bool inc_kids)
186{
187
188 if (inc_kids)

--- 201 unchanged lines hidden ---