summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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 'cpukit')
-rw-r--r--cpukit/ChangeLog7
-rw-r--r--cpukit/libcsupport/src/gxx_wrappers.c2
2 files changed, 8 insertions, 1 deletions
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 <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.
+
2005-08-01 Ralf Corsepius <ralf.corsepius@rtems.org>
* 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);
}