View | Details | Raw Unified | Return to bug 7534
Collapse All | Expand All

(-)linux-2.6.19-rc5-mm2/kernel/power/process.c (-1 / +3 lines)
Lines 98-104 int freeze_processes(void) Link Here
98
				continue;
98
				continue;
99
			if (frozen(p))
99
			if (frozen(p))
100
				continue;
100
				continue;
101
			if (p->state == TASK_TRACED && frozen(p->parent)) {
101
			if (p->state == TASK_TRACED &&
102
			    (frozen(p->parent) ||
103
			     p->parent->state == TASK_STOPPED)) {
102
				cancel_freezing(p);
104
				cancel_freezing(p);
103
				continue;
105
				continue;
104
			}
106
			}

Return to bug 7534