]> Zhao Yanbai Git Server - minix.git/commitdiff
kernel: don't try to lookup ANY in debug output.
authorBen Gras <ben@minix3.org>
Thu, 6 May 2010 22:39:11 +0000 (22:39 +0000)
committerBen Gras <ben@minix3.org>
Thu, 6 May 2010 22:39:11 +0000 (22:39 +0000)
kernel/debug.c

index beaa6daf5b5de6c3ab7bec48a19efe885e00969c..4199fc2d744d85974cdfc4da4d07c06325a023e7 100644 (file)
@@ -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);