source:
trunk/minix/lib/syslib/sys_eniop.c@
19
| Last change on this file since 19 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 444 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 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.