summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/corebarrier.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/corebarrier.c')
-rw-r--r--cpukit/score/src/corebarrier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/corebarrier.c b/cpukit/score/src/corebarrier.c
index 8da3ca1063..98dfd0bb4e 100644
--- a/cpukit/score/src/corebarrier.c
+++ b/cpukit/score/src/corebarrier.c
@@ -29,5 +29,5 @@ void _CORE_barrier_Initialize(
the_barrier->Attributes = *the_barrier_attributes;
the_barrier->number_of_waiting_threads = 0;
- _Thread_queue_Initialize( &the_barrier->Wait_queue );
+ _Thread_queue_Object_initialize( &the_barrier->Wait_queue );
}