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:
376 bytes
|
Line | |
---|
1 | #include "syslib.h"
|
---|
2 |
|
---|
3 | /*===========================================================================*
|
---|
4 | * sys_nice *
|
---|
5 | *===========================================================================*/
|
---|
6 | PUBLIC int sys_nice(int proc, int prio)
|
---|
7 | {
|
---|
8 | message m;
|
---|
9 |
|
---|
10 | m.m1_i1 = proc;
|
---|
11 | m.m1_i2 = prio;
|
---|
12 | return(_taskcall(SYSTASK, SYS_NICE, &m));
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.