source: trunk/minix/lib/syslib/sys_nice.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 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 *===========================================================================*/
6PUBLIC 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.