aboutsummaryrefslogtreecommitdiff
path: root/modules/pdp_icedthe~.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-05-09 04:56:07 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-05-09 04:56:07 +0000
commit1cea503e08bd8103a59c64024a32523ef4dd5076 (patch)
treec52bd08d2d254b6fb8216a48b26bd68ce4140437 /modules/pdp_icedthe~.c
parent33529a0531ab008ddd08af56024e7425a0bd1a86 (diff)
#ifdef'ed out sched_setscheduler on Mac OS X since its not supported there
svn path=/trunk/externals/pidip/; revision=7636
Diffstat (limited to 'modules/pdp_icedthe~.c')
-rw-r--r--modules/pdp_icedthe~.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/pdp_icedthe~.c b/modules/pdp_icedthe~.c
index bd4970d..34a4351 100644
--- a/modules/pdp_icedthe~.c
+++ b/modules/pdp_icedthe~.c
@@ -488,10 +488,12 @@ static void *pdp_icedthe_decode(void *tdata)
twait.tv_nsec = 25000000; // 25 ms
schedprio.sched_priority = sched_get_priority_min(SCHED_FIFO) + x->x_priority;
+#ifdef __gnu_linux__
if ( sched_setscheduler(0, SCHED_FIFO, &schedprio) == -1)
{
post("pdp_icedthe~ : couldn't set priority for decoding thread.");
}
+#endif
while ( x->x_decodechild )
{