00001 #include "syslib.h" 00002 00003 /*===========================================================================* 00004 * sys_enable_iop * 00005 *===========================================================================*/ 00006 PUBLIC int sys_enable_iop(proc_nr_e) 00007 int proc_nr_e; /* number of process to allow I/O */ 00008 { 00009 message m_iop; 00010 m_iop.IO_ENDPT = proc_nr_e; 00011 return _taskcall(SYSTASK, SYS_IOPENABLE, &m_iop); 00012 } 00013 00014
1.4.6