Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typos. | Ondřej Bílka | 2013-08-30 | 47 | -45/+107 |
| | |||||
* | ARM: Fix clone code when built for Thumb. | Will Newton | 2013-08-30 | 3 | -3/+9 |
| | | | | | | | | | | | | | The mov lr, pc instruction will lose the Thumb bit from the return address so use blx lr instead. ports/ChangeLog.arm: 2013-08-30 Will Newton <will.newton@linaro.org> [BZ #15909] * sysdeps/unix/sysv/linux/arm/clone.S (__clone): Use blx instead of mov lr, pc. | ||||
* | sysdeps/arm/armv6t2/strlen.S: strlen implementation for armv6t2. | Will Newton | 2013-08-30 | 2 | -0/+145 |
| | | | | | | | | | | | This implementation of strlen is faster than the armv6 version for all string lengths greater than 1 on a Cortex-A15. ports/ChangeLog.arm: 2013-08-09 Will Newton <will.newton@linaro.org> * sysdeps/arm/armv6t2/strlen.S: New file. | ||||
* | Fix rawmemchr regression on bulldozer. | Ondřej Bílka | 2013-08-30 | 3 | -109/+5 |
| | |||||
* | Fix up ChangeLog formatting. | Roland McGrath | 2013-08-29 | 1 | -4/+6 |
| | |||||
* | Remove aix specific files. | Ondřej Bílka | 2013-08-29 | 10 | -869/+13 |
| | |||||
* | Hurd: Add ESUCCESS error_t value. | Thomas Schwinge | 2013-08-29 | 3 | -1/+23 |
| | |||||
* | Hurd: Use __executable_start symbol instead of _start. | Samuel Thibault | 2013-08-29 | 2 | -2/+7 |
| | | | | | _start points to the first instruction, not to the ELF header. __executable_start does point on the ELF header. | ||||
* | Support ELFOSABI_GNU on all GNU systems. | Thomas Schwinge | 2013-08-29 | 3 | -23/+53 |
| | |||||
* | Use ELFOSABI_GNU instead of ELFOSABI_LINUX. | Thomas Schwinge | 2013-08-29 | 6 | -9/+24 |
| | |||||
* | [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases | Thomas Schwinge | 2013-08-29 | 10 | -32/+87 |
| | |||||
* | math: Additional type conversion tests | Thomas Schwinge | 2013-08-29 | 2 | -7/+24 |
| | | | | | | These have helped me find and fix type conversion issues in QEMU's MIPS hardware emulation. While certainly glibc is not the best place for such tests, they're just an enhancement of tests already present. | ||||
* | Fix typos. | Ondřej Bílka | 2013-08-29 | 33 | -75/+118 |
| | |||||
* | ARM: Pass dl_hwcap to IFUNC resolver. | Carlos O'Donell | 2013-08-29 | 3 | -2/+9 |
| | | | | | For REL relocs pass dl_hwcap to the IFUNC resolver as is required by the IFUNC API (bug 15905). | ||||
* | Use __glibc_unlikely instead of __builtin_expect (..., 0) | Siddhesh Poyarekar | 2013-08-28 | 3 | -2/+7 |
| | |||||
* | [BZ #15897] dlfcn: do not mark dlopen/dlclose as leaf functions | Mike Frysinger | 2013-08-27 | 7 | -6/+160 |
| | | | | | | | | | | | | | Since the dlopen funcs might invoke a constructor that calls a func that is in the same compilation unit as the caller, we cannot mark them as leaf funcs. Similarly, dlclose might invoke a destructor that calls a func that is in the same compilation unit as the caller. URL: https://sourceware.org/bugzilla/show_bug.cgi?id=15897 Reportedy-by: Fabrice Bauzac <libnoon@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Clean up h_errno declaration to use __thread unconditionally. | Roland McGrath | 2013-08-27 | 2 | -10/+10 |
| | |||||
* | Clean up _res declaration to use __thread unconditionally. | Roland McGrath | 2013-08-27 | 3 | -16/+13 |
| | |||||
* | Cope without sunrpc. | Roland McGrath | 2013-08-27 | 2 | -2/+11 |
| | |||||
* | Don't try to use ioctl unless [FIONREAD]. | Roland McGrath | 2013-08-27 | 2 | -1/+6 |
| | |||||
* | Mild decrufting in resolv code. | Roland McGrath | 2013-08-27 | 3 | -0/+8 |
| | |||||
* | True stub __ifreq. | Roland McGrath | 2013-08-27 | 3 | -57/+87 |
| | |||||
* | Clean up __libc_sa_len helper. | Roland McGrath | 2013-08-27 | 6 | -67/+131 |
| | |||||
* | Replace generic bits/socket.h with 4.4 file. | Roland McGrath | 2013-08-27 | 3 | -373/+126 |
| | |||||
* | Flesh out 4.4 bits/socket.h with SOCK_CLOEXEC, SOCK_NONBLOCK. | Roland McGrath | 2013-08-27 | 2 | -1/+23 |
| | |||||
* | Fix missing declaration of LC_CTYPE nonascii-case element | Andreas Schwab | 2013-08-27 | 6 | -9/+58 |
| | |||||
* | Fix handling LC_CTYPE nonascii-case fallback in i686 SSE4.2 and SSSE3 ↵ | Andreas Schwab | 2013-08-27 | 3 | -0/+32 |
| | | | | strcasecmp/strncasecmp | ||||
* | Make stub lxstat64 call xstat64, like stub lxstat calls xstat. | Roland McGrath | 2013-08-26 | 2 | -10/+5 |
| | |||||
* | Use proper #include for xdecrypt declarations. | Roland McGrath | 2013-08-26 | 3 | -4/+8 |
| | |||||
* | Initialize res_hconf in nscd | Siddhesh Poyarekar | 2013-08-26 | 3 | -1/+11 |
| | | | | Fixes BZ #15890. | ||||
* | Fix dependencies for stdlib/tst-tls-atexit | Andreas Schwab | 2013-08-26 | 2 | -1/+6 |
| | |||||
* | Fix indentation in aicache.c | Siddhesh Poyarekar | 2013-08-26 | 2 | -1/+5 |
| | |||||
* | configure: add missing quotes in $build_pt_chown test | Mike Frysinger | 2013-08-25 | 3 | -2/+7 |
| | | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Fix cexp (NaN + i0) (bug 15532). | Joseph Myers | 2013-08-23 | 6 | -14/+42 |
| | |||||
* | Add Ukrainian translations. | David S. Miller | 2013-08-22 | 2 | -0/+7152 |
| | | | | * po/uk.po: Add Ukrainian translations from translation project. | ||||
* | Update Catalan translations. | David S. Miller | 2013-08-22 | 2 | -934/+972 |
| | | | | * po/ca.po: Update Catalan translation from translation project. | ||||
* | MIPS: Correct the handling of reserved FCSR bits | Maciej W. Rozycki | 2013-08-22 | 4 | -4/+12 |
| | | | | | | | | | | | | | | | | | | | | Reserved bits in the Floating-Point Control and Status Register (FCSR) should not be implicitly cleared by fedisableexcept or feenableexcept, there is no reason to. Among these are the 8 condition codes and one of the two bits reserved for architecture implementers (bits #22 & #21). As to the latter, there is no reason to treat any of them as reserved either, they should be user controllable and settable via __fpu_control override as the user sees fit. For example in processors implemented by MIPS Technologies, such as the 5Kf or the 24Kf, these bits are used to change the treatment of denormalised operands and tiny results: bit #22 is Flush Override (FO) and bit #21 is Flush to Nearest (FN). They cause non-IEEE-compliant behaviour, but some programs may have a use for such modes of operation; the library should not obstruct such use just as it does not for the architectural Flush to Zero (FS) bit (bit #24). Therefore the change adjusts the reserved mask accordingly and also documents the distinction between bits 22:21 and 20:18. | ||||
* | Add bug 15867 to NEWS. | Joseph Myers | 2013-08-21 | 1 | -1/+1 |
| | |||||
* | Fix fdim handling of infinities (bug 15797). | Joseph Myers | 2013-08-21 | 6 | -40/+54 |
| | |||||
* | Fix typos. | Ondřej Bílka | 2013-08-21 | 61 | -66/+141 |
| | |||||
* | i686: Skip SSE4_2 version for strcmp, strncmp, strncase, strcasecmp | Liubov Dmitrieva | 2013-08-21 | 4 | -0/+19 |
| | | | | if bit_Slow_SSE4_2 is set. | ||||
* | PowerPC: fix backtrace to handle signal trampolines | Adhemerval Zanella | 2013-08-20 | 8 | -6/+172 |
| | | | | | | This patch fixes backtrace for PPC32 and PPC64 to correctly handle signal trampolines. The 'debug/tst-backtrace6.c' also check for SA_SIGINFO handling, where is triggers another vDSO symbols for PPC32. | ||||
* | Fix cproj handling of (finite, NaN) arguments (bug 15531). | Joseph Myers | 2013-08-20 | 7 | -13/+53 |
| | |||||
* | Include <string.h> in sysdeps/unix/sysv/linux/mmap64.c. | Joseph Myers | 2013-08-20 | 2 | -0/+3 |
| | |||||
* | Use __getpagesize and __ffs in MMAP2_PAGE_SHIFT == -1 case of mmap64. | Joseph Myers | 2013-08-20 | 2 | -3/+8 |
| | |||||
* | Remove trailing blank lines when generating INSTALL. | Joseph Myers | 2013-08-20 | 2 | -2/+13 |
| | |||||
* | * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus): | Andreas Krebbel | 2013-08-20 | 2 | -1/+7 |
| | | | | Align 32 bit compat elf_greg to 8 bytes. | ||||
* | * elf/setup-vdso.h (setup_vdso): Fix missing string termination. | Andreas Arnez | 2013-08-20 | 2 | -1/+5 |
| | |||||
* | Simplify strcoll implementation | Siddhesh Poyarekar | 2013-08-20 | 2 | -406/+304 |
| | | | | | Break up strcoll into simpler functions so that the logic is easier to follow and maintain. | ||||
* | PR 15483 | Alexandre Oliva | 2013-08-17 | 4 | -0/+24 |
| | | | | | | | | * sysdeps/powerpc/nofpu/sim-full.c: Add FIXME note about the need for thread-specific variables preserved across signal handlers. * sysdeps/powerpc/nofpu/soft-supp.h: Likewise. * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise. |