source:
trunk/minix/lib/syslib/sys_eniop.c@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 444 bytes |
Line | |
---|---|
1 | #include "syslib.h" |
2 | |
3 | /*===========================================================================* |
4 | * sys_enable_iop * |
5 | *===========================================================================*/ |
6 | PUBLIC int sys_enable_iop(proc_nr_e) |
7 | int proc_nr_e; /* number of process to allow I/O */ |
8 | { |
9 | message m_iop; |
10 | m_iop.IO_ENDPT = proc_nr_e; |
11 | return _taskcall(SYSTASK, SYS_IOPENABLE, &m_iop); |
12 | } |
13 | |
14 |
Note:
See TracBrowser
for help on using the repository browser.