From f49a82f3de1025e27d93a9aff27198ae6966f451 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 13 Jan 2005 08:25:52 +0000 Subject: 2005-01-13 Joel Sherrill Ralf Corsepius * libcsupport/src/gxx_wrapper.c: Reflect GCC-4.0's gthr-rtems.h. --- cpukit/libcsupport/src/gxx_wrappers.c | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) (limited to 'cpukit/libcsupport/src/gxx_wrappers.c') diff --git a/cpukit/libcsupport/src/gxx_wrappers.c b/cpukit/libcsupport/src/gxx_wrappers.c index d500f3fb5e..2549e68e6d 100644 --- a/cpukit/libcsupport/src/gxx_wrappers.c +++ b/cpukit/libcsupport/src/gxx_wrappers.c @@ -16,6 +16,11 @@ * */ +/* + * This file is only used if using gcc + */ +#if defined(__GNUC__) + #if HAVE_CONFIG_H #include "config.h" #endif @@ -39,7 +44,7 @@ typedef void *__gthread_key_t; typedef int __gthread_once_t; typedef void *__gthread_mutex_t; - +typedef void *__gthread_recursive_mutex_t; /* uncomment this if you need to debug this interface */ @@ -215,3 +220,25 @@ int rtems_gxx_mutex_unlock (__gthread_mutex_t *mutex) #endif return (rtems_semaphore_release( (rtems_id)*mutex ) == RTEMS_SUCCESSFUL) ? 0 :-1; } + +void rtems_gxx_recursive_mutex_init_function(__gthread_recursive_mutex_t *mutex) +{ + rtems_gxx_mutex_init(mutex); +} + +int rtems_gxx_recursive_mutex_lock(__gthread_recursive_mutex_t *mutex) +{ + return rtems_gxx_mutex_lock(mutex); +} + +int rtems_gxx_recursive_mutex_trylock(__gthread_recursive_mutex_t *mutex) +{ + return rtems_gxx_mutex_trylock(mutex); +} + +int rtems_gxx_recursive_mutex_unlock(__gthread_recursive_mutex_t *mutex) +{ + return rtems_gxx_mutex_unlock(mutex); +} + +#endif /* __GNUC__ */ -- cgit v1.2.3