Browse Source

Cope with older linux kernel headers that don't have the newer scheduling policies defined.

nfactor-troky
ckolivas 14 years ago committed by Con Kolivas
parent
commit
51817422fc
  1. 4
      cpu-miner.c

4
cpu-miner.c

@ -40,8 +40,12 @@ static inline void drop_policy(void)
{ {
struct sched_param param; struct sched_param param;
#ifdef SCHED_IDLE
if (unlikely(sched_setscheduler(0, SCHED_IDLE, &param) == -1)) if (unlikely(sched_setscheduler(0, SCHED_IDLE, &param) == -1))
#endif
#ifdef SCHED_BATCH
sched_setscheduler(0, SCHED_BATCH, &param); sched_setscheduler(0, SCHED_BATCH, &param);
#endif
} }
static inline void affine_to_cpu(int id, int cpu) static inline void affine_to_cpu(int id, int cpu)

Loading…
Cancel
Save