Removed some leftover '#if 0'ed debug code in PM
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;
}
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. */