aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-17Format floating routines.Ondřej Bílka
2013-10-17soft-fp: make extensions quiet signaling NaNs (bug 16041).Joseph Myers
2013-10-16soft-fp: fix horizontal whitespace.Joseph Myers
2013-10-15soft-fp: remove unused macros.Joseph Myers
2013-10-15Clear initfini list after freeing. Fixes bug 15308.Ondřej Bílka
2013-10-15soft-fp: fix vertical whitespace and indentation.Joseph Myers
2013-10-14Fix error_tail overflow in allocation calculation.Ondřej Bílka
2013-10-14Correctly copy resolver address. Fixes bug #13028.Ondřej Bílka
2013-10-14ldd: make try_trace more robust and portablePatrick 'P. J.' McDermott
It was noted in 2005 (BZ #832), 2006 (BZ #3266), and 2007 [1] that ldd fails on shells other than Bash >= 3.0 because of the pipefail option around try_trace (added on 2004-12-08). EGLIBC was patched in 2008 [2] (r6912) to make the pipefail check run only on shells that support it, but RTLD output would still be lost on other shells with certain SELinux policies. This patch rewrites try_trace to work on any POSIX-conformant shell in such a way as to also work with such SELinux policies. It also obviates one difference between glibc and EGLIBC. URL: https://sourceware.org/ml/libc-alpha/2007-01/msg00041.html URL: http://www.eglibc.org/archives/patches/msg00526.html 2013-09-11 P. J. McDermott <pj@pehjota.net> [BZ #832] * elf/ldd.bash.in (try_trace): More robustly and portably work around SELinux terminal write permissions by using a command substitution instead of a pipeline and pipefail option.
2013-10-13Adjust language-code fields of LC_ADDRESS.Chris Leonard
2013-10-12soft-fp: fix preprocessor indentation.Joseph Myers
2013-10-12Fix typos.Yuri Chornoivan
2013-10-12Fix typo in setlocale.c. Fixes BZ #15764Reuben Thomas
2013-10-12soft-fp: make __unord* raise "invalid" for signaling NaNs (bug 16036).Joseph Myers
2013-10-12soft-fp: make ordered comparisons raise "invalid" for quiet NaNs (bug 14910).Joseph Myers
2013-10-12soft-fp: add missing FP_INIT_EXCEPTIONS and FP_INIT_ROUNDMODE calls.Joseph Myers
2013-10-12soft-fp: add macro FP_NO_EXCEPTIONS.Joseph Myers
2013-10-12soft-fp: fix _FP_DIV_MEAT_* returning results with wrong exponent (bug 16032).Joseph Myers
2013-10-12soft-fp: fix floating-point to integer unsigned saturation.Joseph Myers
2013-10-11Add systemtap markers to math function slow pathsSiddhesh Poyarekar
Add systemtap probes to various slow paths in libm so that application developers may use systemtap to find out if their applications are hitting these slow paths. We have added probes for pow, exp, log, tan, atan and atan2.
2013-10-11Fix fwrite() reading beyond end of buffer in error pathEric Biggers
Partially revert commits 2b766585f9b4ffabeef2f36200c275976b93f2c7 and de2fd463b1c0310d75084b6d774fb974075a4ad9, which were intended to fix BZ#11741 but caused another, likely worse bug, namely that fwrite() and fputs() could, in an error path, read data beyond the end of the specified buffer, and potentially even write this data to the file. Fix BZ#11741 properly by checking the return value from _IO_padn() in stdio-common/vfprintf.c.
2013-10-10Fix readdir regressions on sparc 32-bit.David S. Miller
* sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of directory block.
2013-10-10Update copyright and license notices in soft-fp files from libgcc.Joseph Myers
2013-10-10Add soft-fp files from libgcc.Joseph Myers
2013-10-10Update sparc ULPs.David S. Miller
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2013-10-10Extend powerpc-nofpu -fno-builtin-fabsl workaround to more files.Joseph Myers
2013-10-10Avoid ordered comparisons of NaNs in ldbl-128ibm acosl and asinl.Joseph Myers
2013-10-10malloc/hooks.c: Correct check for overflow in memalign_check.Will Newton
A large value of bytes passed to memalign_check can cause an integer overflow in _int_memalign and heap corruption. This issue can be exposed by running tst-memalign with MALLOC_CHECK_=3. ChangeLog: 2013-10-10 Will Newton <will.newton@linaro.org> * malloc/hooks.c (memalign_check): Ensure the value of bytes passed to _int_memalign does not overflow.
2013-10-10benchtests: Add include-sources directive.Torvald Riegel
This adds the "include-sources" directive to scripts/bench.pl. This allows for including source code (vs including headers, which might get a different search path) after the inclusion of any headers.
2013-10-10soft-fp: split FP_INIT_EXCEPTIONS from FP_INIT_ROUNDMODE.Joseph Myers
2013-10-10soft-fp: fix negation NaN handling (bug 16034).Joseph Myers
2013-10-09soft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4.Joseph Myers
2013-10-09soft-fp: fix typo in comment.Adam Buchbinder
2013-10-08Update gethostbyname2_r documentation. Fixes bug #156.Yogesh Chaudhari
2013-10-08Fix typo in last changeAndreas Schwab
2013-10-08m68k: use PIC for Scrt1.oAndreas Schwab
2013-10-08Use p2align instead ALIGNOndřej Bílka
2013-10-08correct LC_TELEPHONE for pap localesChris Leonard
2013-10-08Format e_pow.cSiddhesh Poyarekar
2013-10-08Format e_exp.cSiddhesh Poyarekar
2013-10-08Consolidate multiple precision sin/cos functionsSiddhesh Poyarekar
2013-10-08Clean up locale file alignment handling.Joseph Myers
2013-10-07Fixes to Changelog for locale splitsChris Leonard
2013-10-07Fix up ChangeLog formatting.Roland McGrath
2013-10-07remove localdata path from Changelog entriesChris Leonard
2013-10-07Fix ar_SS in SUPPORTEDChris Leonard
2013-10-07Fix ChangeLog formattingSiddhesh Poyarekar
2013-10-07Add more directives to benchmark input filesSiddhesh Poyarekar
This patch adds some more directives to the benchmark inputs file, moving functionality from the Makefile and making the code generation script a bit cleaner. The function argument and return types that were earlier added as variables in the makefile and passed to the script via command line arguments are now the 'args' and 'ret' directive respectively. 'args' should be a colon separated list of argument types (skipped if the function doesn't accept any arguments) and 'ret' should be the return type. Additionally, an 'includes' directive may have a comma separated list of headers to include in the source. For example, the pow input file now looks like this: 42.0, 42.0 1.0000000000000020, 1.5 I did this to unclutter the benchtests Makefile a bit and eventually eliminate dependency of the tests on the Makefile and have tests depend on their respective include files only.
2013-10-07Fix careless merge.Alan Modra
2013-10-05Adjust language-code fields of LC_ADDRESS.Chris Leonard