PUBLIC int no_sys()
{
/* A system call number not implemented by PM has been requested. */
- printf("PM: in no_sys, call nr %d from %d\n", call_nr, who_e);
return(ENOSYS);
}
if (call_nr < 0 || call_nr >= NCALLS) {
error = ENOSYS;
/* Not supposed to happen. */
- printf("VFS: illegal %d system call by %d\n",
- call_nr, who_e);
} else if (fp->fp_pid == PID_FREE) {
error = ENOSYS;
printf(
PUBLIC int no_sys()
{
/* Somebody has used an illegal system call number */
- printf("VFS no_sys: call %d from %d (pid %d)\n", call_nr, who_e, who_p);
return(ENOSYS);
}