source: trunk/minix/lib/other/sys_eniop.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 448 bytes
Line 
1#include "../syslib/syslib.h"
2
3/*===========================================================================*
4 * sys_enable_iop *
5 *===========================================================================*/
6PUBLIC int sys_enable_iop(proc_nr)
7int proc_nr; /* number of process to allow I/O */
8{
9 message m_iop;
10 m_iop.IO_ENDPT = proc_nr;
11 return _taskcall(SYSTASK, SYS_IOPENABLE, &m_iop);
12}
13
14
Note: See TracBrowser for help on using the repository browser.