minix/lib/syslib/sys_eniop.c

15 lines
444 B
C
Raw Normal View History

2005-11-09 18:14:14 +01:00
#include "syslib.h"
/*===========================================================================*
* sys_enable_iop *
*===========================================================================*/
PUBLIC int sys_enable_iop(proc_nr_e)
int proc_nr_e; /* number of process to allow I/O */
2005-11-09 18:14:14 +01:00
{
message m_iop;
m_iop.IO_ENDPT = proc_nr_e;
2005-11-09 18:14:14 +01:00
return _taskcall(SYSTASK, SYS_IOPENABLE, &m_iop);
}