|
Last change
on this file since 10 was 9, checked in by Mattia Monga, 14 years ago |
|
Minix 3.1.2a
|
-
Property svn:executable
set to
*
|
|
File size:
439 bytes
|
| Rev | Line | |
|---|
| [9] | 1 | #include "syslib.h"
|
|---|
| 2 |
|
|---|
| 3 | /*===========================================================================*
|
|---|
| 4 | * sys_endksig *
|
|---|
| 5 | *===========================================================================*/
|
|---|
| 6 | PUBLIC int sys_endksig(proc_nr)
|
|---|
| 7 | int proc_nr; /* process number */
|
|---|
| 8 | {
|
|---|
| 9 | message m;
|
|---|
| 10 | int result;
|
|---|
| 11 |
|
|---|
| 12 | m.SIG_ENDPT = proc_nr;
|
|---|
| 13 | result = _taskcall(SYSTASK, SYS_ENDKSIG, &m);
|
|---|
| 14 | return(result);
|
|---|
| 15 | }
|
|---|
| 16 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.