minix/kernel/system/do_unused.c

17 lines
611 B
C
Raw Normal View History

/* This file provides a catch-all handler for unused kernel calls. A kernel
* call may be unused when it is not defined or when it is disabled in the
* kernel's configuration.
*/
2010-04-02 00:22:33 +02:00
#include "kernel/system.h"
/*===========================================================================*
* do_unused *
*===========================================================================*/
PUBLIC int do_unused(struct proc * caller, message * m_ptr)
{
printf("SYSTEM: got unused request %d from %d\n",
m_ptr->m_type, m_ptr->m_source);
return(EBADREQUEST); /* illegal message type */
}