From 6d1e301a09621101dcb19a5f48555a2f9239c643 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 2 Aug 2005 12:37:14 +0000 Subject: [PATCH] 2005-08-02 Ralf Corsepius PR 817/rtems * libcsupport/src/gxx_wrappers.c: Rename rtems_gxx_recursive_mutex_init_function to rtems_gxx_recursive_mutex_init. --- cpukit/ChangeLog | 7 +++++++ cpukit/libcsupport/src/gxx_wrappers.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index f0f78c3a26..557d01bda7 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,10 @@ +2005-08-02 Ralf Corsepius + + PR 817/rtems + * libcsupport/src/gxx_wrappers.c: Rename + rtems_gxx_recursive_mutex_init_function to + rtems_gxx_recursive_mutex_init. + 2005-08-01 Ralf Corsepius * libnetworking/sys/syslog.h: Partial update from FreeBSD. diff --git a/cpukit/libcsupport/src/gxx_wrappers.c b/cpukit/libcsupport/src/gxx_wrappers.c index e6a3424698..d0789fc152 100644 --- a/cpukit/libcsupport/src/gxx_wrappers.c +++ b/cpukit/libcsupport/src/gxx_wrappers.c @@ -221,7 +221,7 @@ int rtems_gxx_mutex_unlock (__gthread_mutex_t *mutex) return (rtems_semaphore_release( (rtems_id)*mutex ) == RTEMS_SUCCESSFUL) ? 0 :-1; } -void rtems_gxx_recursive_mutex_init_function(__gthread_recursive_mutex_t *mutex) +void rtems_gxx_recursive_mutex_init(__gthread_recursive_mutex_t *mutex) { rtems_gxx_mutex_init(mutex); }