14 lines
447 B
C
14 lines
447 B
C
#include "../syslib/syslib.h"
|
|
|
|
/*===========================================================================*
|
|
* sys_enable_iop *
|
|
*===========================================================================*/
|
|
PUBLIC int sys_enable_iop(proc_nr)
|
|
int proc_nr; /* number of process to allow I/O */
|
|
{
|
|
message m_iop;
|
|
m_iop.PROC_NR = proc_nr;
|
|
return _taskcall(SYSTASK, SYS_IOPENABLE, &m_iop);
|
|
}
|
|
|
|
|