From 9187bb23a0dc7f0badcf22833de2ff193e9e0f68 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 21 Sep 2017 15:21:13 +0200 Subject: RTEMS: Make pthread_barrier_t self-contained Signed-off-by: Sebastian Huber --- newlib/libc/sys/rtems/include/sys/_pthreadtypes.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/newlib/libc/sys/rtems/include/sys/_pthreadtypes.h b/newlib/libc/sys/rtems/include/sys/_pthreadtypes.h index 9db50fe44..4cb15d14b 100644 --- a/newlib/libc/sys/rtems/include/sys/_pthreadtypes.h +++ b/newlib/libc/sys/rtems/include/sys/_pthreadtypes.h @@ -179,7 +179,13 @@ typedef struct { /* POSIX Barrier Types */ #if defined(_POSIX_BARRIERS) -typedef __uint32_t pthread_barrier_t; /* POSIX Barrier Object */ +typedef struct { + unsigned long _flags; + struct _Thread_queue_Queue _Queue; + unsigned int _count; + unsigned int _waiting_threads; +} pthread_barrier_t; + typedef struct { int is_initialized; /* is this structure initialized? */ #if defined(_POSIX_THREAD_PROCESS_SHARED) -- cgit v1.2.3