summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-01 13:20:51 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-01 13:20:51 +0200
commit737e18dbca03c086601dfbe7f90ae143bc34f964 (patch)
tree2f77c51e4866d6a4aa94a8597dddb22f7979de66
parentbsps: Fix GICv3 support for AArch32 (diff)
downloadrtems-737e18dbca03c086601dfbe7f90ae143bc34f964.tar.bz2
rtems: Do not broadcast to signal a condition var
Close #4463.
-rw-r--r--cpukit/include/rtems/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/include/rtems/thread.h b/cpukit/include/rtems/thread.h
index d0cb03c284..4988b46faa 100644
--- a/cpukit/include/rtems/thread.h
+++ b/cpukit/include/rtems/thread.h
@@ -163,7 +163,7 @@ static __inline void rtems_condition_variable_signal(
rtems_condition_variable *condition_variable
)
{
- _Condition_Broadcast( condition_variable );
+ _Condition_Signal( condition_variable );
}
static __inline void rtems_condition_variable_broadcast(