source:
trunk/minix/lib/other/sys_eniop.c@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 448 bytes |
Rev | Line | |
---|---|---|
[9] | 1 | #include "../syslib/syslib.h" |
2 | ||
3 | /*===========================================================================* | |
4 | * sys_enable_iop * | |
5 | *===========================================================================*/ | |
6 | PUBLIC int sys_enable_iop(proc_nr) | |
7 | int 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.