Treat RTP_PRIO_FIFO the same as RTP_PRIO_REALTIME for status display.

This commit is contained in:
dufault 1998-05-19 20:52:31 +00:00
parent 03438335f7
commit 67c60b6b62

View File

@ -34,7 +34,7 @@
#ifndef lint #ifndef lint
static const char rcsid[] = static const char rcsid[] =
"$Id$"; "$Id: rtprio.c,v 1.5 1997/10/13 11:24:01 charnier Exp $";
#endif /* not lint */ #endif /* not lint */
#include <sys/param.h> #include <sys/param.h>
@ -81,6 +81,7 @@ main(argc, argv)
printf("%s: ", p); printf("%s: ", p);
switch (rtp.type) { switch (rtp.type) {
case RTP_PRIO_REALTIME: case RTP_PRIO_REALTIME:
case RTP_PRIO_FIFO:
printf("realtime priority %d\n", rtp.prio); printf("realtime priority %d\n", rtp.prio);
break; break;
case RTP_PRIO_NORMAL: case RTP_PRIO_NORMAL: