. service tells you which device it couldn't stat
[minix3.git] / lib / ack / libm2 / stackprio.c
blobecd3fee2a3689274a1ba2694245daa2b1b266d9b
1 /*
2 (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 See the copyright notice in the ACK home directory, in the file "Copyright".
4 */
6 /*
7 Module: Dummy priority routines
8 Author: Ceriel J.H. Jacobs
9 Version: $Header$
12 static unsigned prio = 0;
14 stackprio(n)
15 unsigned n;
17 unsigned old = prio;
19 if (n > prio) prio = n;
20 return old;
23 unstackprio(n)
24 unsigned n;
26 prio = n;