/* The kernel call implemented in this file: * m_type: SYS_MQ_REQUEST_NOTIFY * */ #include "kernel/mqueue.h" #include "kernel/system.h" #include "kernel/vm.h" #include #include #include #include #include #if USE_MQ_IPC /*===========================================================================* * do_mq_request_notify * *===========================================================================*/ int do_mq_request_notify(struct proc * caller, message * m_ptr) { return mq_notify(m_ptr->m_lsys_krn_sys_mqueue_notify.notify_on_off); } #endif /* USE_MQ_IPC */