[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commits] r21225 - in /fsf/trunk/libc: ChangeLog math/libm-test.inc nptl/ChangeLog nptl/tst-cond25.c
- To: commits@xxxxxxxxxx
- Subject: [Commits] r21225 - in /fsf/trunk/libc: ChangeLog math/libm-test.inc nptl/ChangeLog nptl/tst-cond25.c
- From: eglibc@xxxxxxxxxx
- Date: Thu, 18 Oct 2012 00:01:54 -0000
Author: eglibc
Date: Thu Oct 18 00:01:52 2012
New Revision: 21225
Log:
Import glibc-mainline for 2012-10-18
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/math/libm-test.inc
fsf/trunk/libc/nptl/ChangeLog
fsf/trunk/libc/nptl/tst-cond25.c
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Thu Oct 18 00:01:52 2012
@@ -1,3 +1,9 @@
+2012-10-17 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
+
+ * math/libm-test.inc (gamma_test): Do not call feclearexcept.
+ (lgamma_test): Likewise.
+ (tgamma_test): Likewise.
+
2012-10-16 Florian Weimer <fweimer@xxxxxxxxxx>
[BZ #14700]
Modified: fsf/trunk/libc/math/libm-test.inc
==============================================================================
--- fsf/trunk/libc/math/libm-test.inc (original)
+++ fsf/trunk/libc/math/libm-test.inc Thu Oct 18 00:01:52 2012
@@ -5015,7 +5015,6 @@
if (errno == ENOSYS)
/* Function not implemented. */
return;
- feclearexcept (FE_ALL_EXCEPT);
START (gamma);
@@ -5531,7 +5530,6 @@
if (errno == ENOSYS)
/* Function not implemented. */
return;
- feclearexcept (FE_ALL_EXCEPT);
START (lgamma);
@@ -9346,7 +9344,6 @@
if (errno == ENOSYS)
/* Function not implemented. */
return;
- feclearexcept (FE_ALL_EXCEPT);
START (tgamma);
Modified: fsf/trunk/libc/nptl/ChangeLog
==============================================================================
--- fsf/trunk/libc/nptl/ChangeLog (original)
+++ fsf/trunk/libc/nptl/ChangeLog Thu Oct 18 00:01:52 2012
@@ -1,3 +1,8 @@
+2012-10-17 Siddhesh Poyarekar <siddhesh@xxxxxxxxxx>
+
+ * tst-cond25.c (do_test_wait): Don't check for return value from
+ pthread_cancel.
+
2012-10-16 Siddhesh Poyarekar <siddhesh@xxxxxxxxxx>
[BZ #14652]
Modified: fsf/trunk/libc/nptl/tst-cond25.c
==============================================================================
--- fsf/trunk/libc/nptl/tst-cond25.c (original)
+++ fsf/trunk/libc/nptl/tst-cond25.c Thu Oct 18 00:01:52 2012
@@ -228,11 +228,7 @@
for (j = 0; j < NUM; j++)
{
- if ((ret = pthread_cancel (w[j])) != 0)
- {
- printf ("waiter[%d]: cancel failed: %s\n", j, strerror (ret));
- goto out;
- }
+ pthread_cancel (w[j]);
if ((ret = pthread_join (w[j], &thr_ret)) != 0)
{
_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits