diff options
author | Roland Scheidegger <sroland@vmware.com> | 2017-08-26 17:08:07 +0200 |
---|---|---|
committer | Roland Scheidegger <sroland@vmware.com> | 2017-09-01 01:10:32 +0200 |
commit | c92fe8a8c50968a6ac37cbecdd54208f0eea246c (patch) | |
tree | c17509748c8074276de1b468749c4bb9d69d2b78 /src/util/u_queue.c | |
parent | 242211933a06826961709c2689a1d30f735ab7b9 (diff) |
util: only use SCHED_IDLE in pthread_setschedparam() when it's defined
Fixes build error when it's not.
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/util/u_queue.c')
-rw-r--r-- | src/util/u_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/u_queue.c b/src/util/u_queue.c index 49361c3dad..449da7dc9a 100644 --- a/src/util/u_queue.c +++ b/src/util/u_queue.c @@ -246,7 +246,7 @@ util_queue_init(struct util_queue *queue, } if (flags & UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY) { - #if defined(__linux__) + #if defined(__linux__) && defined(SCHED_IDLE) struct sched_param sched_param = {0}; /* The nice() function can only set a maximum of 19. |