]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix of endpointless slot message in FS
authorBen Gras <ben@minix3.org>
Fri, 3 Mar 2006 10:25:28 +0000 (10:25 +0000)
committerBen Gras <ben@minix3.org>
Fri, 3 Mar 2006 10:25:28 +0000 (10:25 +0000)
Removed some leftover '#if 0'ed debug code in PM

servers/fs/main.c
servers/pm/main.c

index 06e9b9d635bf6bc823c17dce2ca884e52c9c8b34..be7b2e506fca9add25459c80da48e2adfdc588cd 100644 (file)
@@ -134,7 +134,7 @@ PRIVATE void get_work()
     if(who_p < -NR_TASKS || who_p >= NR_PROCS)
        panic(__FILE__,"receive process out of range", who_p);
     if(who_p >= 0 && fproc[who_p].fp_endpoint == NONE) {
-       printf("FS: ignoring request from %d, endpointless slot %d (%d)",
+       printf("FS: ignoring request from %d, endpointless slot %d (%d)\n",
                m_in.m_source, who_p, m_in.m_type);
        continue;
     }
index 77a0040d71cc4ec363f3d5d25a6f09cfe8a445f6..ec31baa50b34081af5ef6b1a9a4b8cde38413207 100644 (file)
@@ -69,14 +69,7 @@ PUBLIC int main()
        else if ((unsigned) call_nr >= NCALLS) {
                result = ENOSYS;
        } else {
-#if 0
-               printf("[pm: %s %d %d %d  ",
-                       who_p >= 0 ? mproc[who_p].mp_name : "?", who_e, who_p, call_nr);
-#endif
                result = (*call_vec[call_nr])();
-#if 0
-               printf(" %d] ", result);
-#endif
        }
 
        /* Send the results back to the user to indicate completion. */