summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/gxx_wrappers.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-08-02 12:37:14 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-08-02 12:37:14 +0000
commit6d1e301a09621101dcb19a5f48555a2f9239c643 (patch)
tree9c750fbf98621e1d9e2e5369b6363b37b6ca8255 /cpukit/libcsupport/src/gxx_wrappers.c
parent2005-08-01 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-6d1e301a09621101dcb19a5f48555a2f9239c643.tar.bz2
2005-08-02 Ralf Corsepius <ralf.corsepius@rtems.org>
PR 817/rtems * libcsupport/src/gxx_wrappers.c: Rename rtems_gxx_recursive_mutex_init_function to rtems_gxx_recursive_mutex_init.
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/gxx_wrappers.c2
1 files changed, 1 insertions, 1 deletions
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);
}