5d7f5fccf5
. remove or optionalify some pci debugging stuff
14 lines
444 B
C
14 lines
444 B
C
#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 */
|
|
{
|
|
message m_iop;
|
|
m_iop.IO_ENDPT = proc_nr_e;
|
|
return _taskcall(SYSTASK, SYS_IOPENABLE, &m_iop);
|
|
}
|
|
|
|
|