From: Ben Gras Date: Thu, 6 May 2010 22:39:11 +0000 (+0000) Subject: kernel: don't try to lookup ANY in debug output. X-Git-Tag: v3.1.7~78 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=b8eddf00d84097a092f814eecdae9af823942cb2;p=minix.git kernel: don't try to lookup ANY in debug output. --- diff --git a/kernel/debug.c b/kernel/debug.c index beaa6daf5..4199fc2d7 100644 --- a/kernel/debug.c +++ b/kernel/debug.c @@ -217,7 +217,7 @@ PRIVATE void print_proc_depends(struct proc *pp, const int level) dep = P_BLOCKEDON(pp); - if(dep != NONE) { + if(dep != NONE && dep != ANY) { int procno; if(isokendpt(dep, &procno)) { depproc = proc_addr(procno);