summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/condition.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/condition.c')
-rw-r--r--cpukit/score/src/condition.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/score/src/condition.c b/cpukit/score/src/condition.c
index 9913d86d34..892245baf5 100644
--- a/cpukit/score/src/condition.c
+++ b/cpukit/score/src/condition.c
@@ -279,7 +279,9 @@ static void _Condition_Wake( struct _Condition_Control *_condition, int count )
* In common uses cases of condition variables there are normally no threads
* on the queue, so check this condition early.
*/
- if ( __predict_true( _Thread_queue_Is_empty( &condition->Queue.Queue ) ) ) {
+ if (
+ RTEMS_PREDICT_TRUE( _Thread_queue_Is_empty( &condition->Queue.Queue ) )
+ ) {
_Condition_Queue_release( condition, &context.Base );
return;
}