From 28e7d30f3495b78e59d1ca07dff89dc7cf9441d6 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 2 Aug 2005 12:37:44 +0000 Subject: [PATCH] 2005-08-02 Ralf Corsepius PR 817/rtems * src/gxx_wrappers.c: Rename rtems_gxx_recursive_mutex_init_function to rtems_gxx_recursive_mutex_init. --- cpukit/libcsupport/ChangeLog | 7 +++++++ cpukit/libcsupport/src/gxx_wrappers.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cpukit/libcsupport/ChangeLog b/cpukit/libcsupport/ChangeLog index cbdb9b1091..d8db01618e 100644 --- a/cpukit/libcsupport/ChangeLog +++ b/cpukit/libcsupport/ChangeLog @@ -1,3 +1,10 @@ +2005-08-02 Ralf Corsepius + + PR 817/rtems + * src/gxx_wrappers.c: Rename + rtems_gxx_recursive_mutex_init_function to + rtems_gxx_recursive_mutex_init. + 2005-05-13 Jennifer Averett * src/mallocfreespace.c: 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); }