summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadq.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-24 08:51:37 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 13:19:26 +0100
commit1fac361fb9d4ec7f5b4ad2801ee6ff5858c82942 (patch)
tree5a730a9562806fa388ca50e3be7d79a76892fbb4 /cpukit/score/src/threadq.c
parentscore: Delete _Watchdog_Report() (diff)
downloadrtems-1fac361fb9d4ec7f5b4ad2801ee6ff5858c82942.tar.bz2
score: PR2174: Add workaround
Add _Scheduler_FIXME_thread_priority_queues_are_broken to prevent thread priority queues in case an EDF scheduler is used.
Diffstat (limited to 'cpukit/score/src/threadq.c')
-rw-r--r--cpukit/score/src/threadq.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpukit/score/src/threadq.c b/cpukit/score/src/threadq.c
index 463330a2f6..69b687fe1c 100644
--- a/cpukit/score/src/threadq.c
+++ b/cpukit/score/src/threadq.c
@@ -20,6 +20,7 @@
#include <rtems/score/threadqimpl.h>
#include <rtems/score/chainimpl.h>
+#include <rtems/score/scheduler.h>
void _Thread_queue_Initialize(
Thread_queue_Control *the_thread_queue,
@@ -28,6 +29,10 @@ void _Thread_queue_Initialize(
uint32_t timeout_status
)
{
+ if ( _Scheduler_FIXME_thread_priority_queues_are_broken ) {
+ the_discipline = THREAD_QUEUE_DISCIPLINE_FIFO;
+ }
+
the_thread_queue->state = state;
the_thread_queue->discipline = the_discipline;
the_thread_queue->timeout_status = timeout_status;