From baa3ac585387e75e19484578213210213db68086 Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Tue, 25 Jul 2006 14:13:09 +0000 Subject: [PATCH] Fix for 'cleanup: not idle: 2313' bug. --- servers/pm/forkexit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/servers/pm/forkexit.c b/servers/pm/forkexit.c index ac5f3d137..d12898a0f 100644 --- a/servers/pm/forkexit.c +++ b/servers/pm/forkexit.c @@ -325,8 +325,10 @@ int for_trace; /* 'rmp' now points to a child to be disinherited. */ rmp->mp_parent = INIT_PROC_NR; parent_waiting = mproc[INIT_PROC_NR].mp_flags & WAITING; - if (parent_waiting && (rmp->mp_flags & ZOMBIE)) + if (parent_waiting && (rmp->mp_flags & ZOMBIE) && + rmp->mp_fs_call != PM_EXIT) { cleanup(rmp); + } } } -- 2.44.0