From 0f951b3dd34b355579b4c9a9e287d32ac771bc67 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 18 Jan 2021 07:23:46 +0100 Subject: [PATCH] RTEMS: Fix libgomp build libgomp/ * config/rtems/sem.h (gomp_sem_getcount): New function. --- libgomp/config/rtems/sem.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libgomp/config/rtems/sem.h b/libgomp/config/rtems/sem.h index 50b650a..0cd7415 100644 --- a/libgomp/config/rtems/sem.h +++ b/libgomp/config/rtems/sem.h @@ -47,6 +47,11 @@ static inline void gomp_sem_post (gomp_sem_t *sem) _Semaphore_Post (sem); } +static inline int gomp_sem_getcount (gomp_sem_t *sem) +{ + return (int) __atomic_load_n (&sem->_count, MEMMODEL_RELAXED); +} + static inline void gomp_sem_destroy (gomp_sem_t *sem) { _Semaphore_Destroy (sem); -- 2.7.4