mirror of git://gcc.gnu.org/git/gcc.git
re PR gcov-profile/52627 (Build of libgcc fails w/o __GTHREAD_MUTEX_INIT: error: 'mx' undeclared)
2012-03-20 Richard Guenther <rguenther@suse.de> PR gcov-profile/52627 * libgcov.c (init_mx): Fix mutex name. From-SVN: r185569
This commit is contained in:
parent
999a099ca2
commit
b260a8c034
|
@ -1,3 +1,8 @@
|
||||||
|
2012-03-20 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
|
PR gcov-profile/52627
|
||||||
|
* libgcov.c (init_mx): Fix mutex name.
|
||||||
|
|
||||||
2012-03-16 Tristan Gingold <gingold@adacore.com>
|
2012-03-16 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* config/ia64/vms-unwind.h: Remove ulong (and replace
|
* config/ia64/vms-unwind.h: Remove ulong (and replace
|
||||||
|
|
|
@ -713,7 +713,7 @@ __gthread_mutex_t __gcov_flush_mx ATTRIBUTE_HIDDEN;
|
||||||
static void
|
static void
|
||||||
init_mx (void)
|
init_mx (void)
|
||||||
{
|
{
|
||||||
__GTHREAD_MUTEX_INIT_FUNCTION (&mx);
|
__GTHREAD_MUTEX_INIT_FUNCTION (&__gcov_flush_mx);
|
||||||
}
|
}
|
||||||
static void
|
static void
|
||||||
init_mx_once (void)
|
init_mx_once (void)
|
||||||
|
|
Loading…
Reference in New Issue