aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2008-12-23 03:10:35 +0000
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>2008-12-23 03:10:35 +0000
commit4e832b8001b05013ac78f6b130ea138de55f9113 (patch)
tree5490a6ac94cd1e511b4529f42fe4caf5240cfbaa
parentaf8dc0a534e3b87410662c6a2021b60754296f2a (diff)
2008-12-22 Jonathan Larmour <jifl@eCosCentric.com>ix86/avx-last-merge
* include/ext/concurrence.h: Fix __gthread_cond_t initialisation function macro name. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@142901 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/ext/concurrence.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 71f47b80903..64c0f51786c 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2008-12-22 Jonathan Larmour <jifl@eCosCentric.com>
+
+ * include/ext/concurrence.h: Fix __gthread_cond_t initialisation
+ function macro name.
+
2008-12-22 Benjamin Kosnik <bkoz@redhat.com>
* doc/doxygen/stdheader.cc: Add cstdlib.
diff --git a/libstdc++-v3/include/ext/concurrence.h b/libstdc++-v3/include/ext/concurrence.h
index b9e43d67f90..49316b35993 100644
--- a/libstdc++-v3/include/ext/concurrence.h
+++ b/libstdc++-v3/include/ext/concurrence.h
@@ -281,7 +281,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
__gthread_cond_t __tmp = __GTHREAD_COND_INIT;
_M_cond = __tmp;
#else
- __GTHREAD_MUTEX_INIT_FUNCTION(&_M_cond);
+ __GTHREAD_COND_INIT_FUNCTION(&_M_cond);
#endif
}
#endif