Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-23 | Fix overrun in destination buffer | Liubov Dmitrieva | |
2011-12-23 | Optimize x86-32 feraiseexcept also for !__SSE_MATH__ | Ulrich Drepper | |
2011-12-23 | Fix wrong copying processing for last bytes in x86-32 wcscpy | Liubov Dmitrieva | |
Wrong copy algorithm for last bytes, not thread safety. In some particular cases it uses the destination memory beyond the string end for 16-byte load, puts changes into that part that is relevant to destination string and writes whole 16-byte chunk into memory. I have a test case where the memory beyond the string end contains malloc/free data, that appear corrupted in case free() updates it in between the 16-byte read and 16-byte write. | |||
2011-12-22 | Add feraiseexcept optimization for x86-32 | Ulrich Drepper | |
2011-12-22 | Also retrieve SSE exceptions in x86-32 fegetexceptflag | Ulrich Drepper | |
2011-12-22 | Merge branch 'master' of ssh://sourceware.org/git/glibc | Ulrich Drepper | |
Conflicts: ChangeLog | |||
2011-12-22 | Fix overrun in strcpy destination buffer in x86-32/SSSE3 version | Liubov Dmitrieva | |
2011-12-22 | Support building bits/syscall.h for any number of subarch variants. | Joseph Myers | |
2011-12-22 | Use __REDIRECT_NTH for __feraiseexcept_renamed | Ulrich Drepper | |
2011-12-21 | Define EPOLLONESHOT and EPOLLET using unsigned values | Ulrich Drepper | |
2011-12-21 | Define x86_64 feraiseexcept inline only under __USE_EXTERN_INLINES. | Rafael Ávila de Espíndola | |
2011-12-17 | Optimized strcasecmp for Power7 | Adhemerval Zanella | |
2011-12-17 | Fix WP | Ulrich Drepper | |
2011-12-17 | Simplify code for accessing powerpc GOT | Will Schmidt | |
2011-12-17 | Optimized nearbyint for PPC | Adhemerval Zanella | |
2011-12-17 | WP fixes | Ulrich Drepper | |
2011-12-17 | Optimized wcschr and wcscpy for x86-64 and x86-32 | Ulrich Drepper | |
2011-12-10 | Optimize generic ELF hash function a bit more | Ulrich Drepper | |
2011-12-06 | Fix a wrong constant in powerpc hypot implementation | Andreas Schwab | |
2011-12-04 | Small optimization of generic ELF hash function | Ulrich Drepper | |
2011-12-04 | Fix attreibute for _dl_elf_hash | Ulrich Drepper | |
2011-12-03 | Fix more warnings | Ulrich Drepper | |
2011-12-02 | SH atomic asms fix for gcc 4.7 | Ulrich Drepper | |
2011-12-02 | Implement SH backtrace using IA64 version | Ulrich Drepper | |
2011-12-01 | Truncate time values in Linux futimes when falling back to utime | Andreas Schwab | |
2011-11-30 | Adjust libm test ulps for s390 | Andreas Schwab | |
2011-11-16 | Fix SSSE3/SSE4.2 strcasecmp[_l]/strncasecmp[_l] for non-PIC and ↵ | Andreas Schwab | |
-mno-tls-direct-seg-refs | |||
2011-11-15 | Fix clock_gettime for assumed kernel >= 2.6.12 | Andreas Schwab | |
2011-11-15 | Pretty printing | Ulrich Drepper | |
2011-11-15 | Fix reference counting in network interface information cache | Andreas Schwab | |
2011-11-15 | Clean up internal fopen uses | Ulrich Drepper | |
No need to ever not use c and e. | |||
2011-11-14 | Add SSE4.2 support for strcasecmp and strncasecmp on x86-32 | Ulrich Drepper | |
2011-11-13 | SSSE3 optimized strcasecmp and strncasecmp for x86-32 | Ulrich Drepper | |
2011-11-12 | Fix wanings in clock_gettime | Ulrich Drepper | |
2011-11-12 | Avoid warnings about unused variable in 96-bit j0l and j1l | Ulrich Drepper | |
2011-11-12 | Avoid warnings about unused variables in 96-bit hypotl | Ulrich Drepper | |
2011-11-12 | Prepare dwarf2.h for multiple inclusion | Ulrich Drepper | |
2011-11-12 | Fix incomplete edit in last patch | Ulrich Drepper | |
2011-11-12 | Avoid redefinition of DWARF constants | Ulrich Drepper | |
2011-11-12 | Avoid warning from shifting | Ulrich Drepper | |
2011-11-12 | Fix warnings in fallback C code of x86-32 wide memory functions | Ulrich Drepper | |
2011-11-11 | PowerPC: Arithmetic function optimizations for POWER | Adhemerval Zanella | |
2011-11-11 | Remove unused variables | Marek Polacek | |
2011-11-08 | Remove unnecessary code from x86-32 SSSE3 strncmp | Ulrich Drepper | |
2011-11-01 | Fix test of non-ASCII locales in x86-64 strcasecmp et.al. | Ulrich Drepper | |
2011-11-01 | unsigned long it better for the size arguments | Ulrich Drepper | |
The new syscalls should use unsigned long not size_t. The parameters are not a direct measure of memory size. | |||
2011-11-01 | New Linux syscalls process_vm_readv and process_vm_writev | Ulrich Drepper | |
2011-10-31 | Cache network interface information | Ulrich Drepper | |
Whenever getaddrinfo needed network interface information it used the netlink interface to read the information every single time. The problem is that this information can change at any time. The patch implements monitoring of the network interfaces through nscd. If no change is detected the previously read information can be reused (which is the norm). This timestamp information is also made available to other processes using the shared memory segment between nscd and those processes. | |||
2011-10-30 | Fix potential double close in __check_fd if OOM | Ulrich Drepper | |
2011-10-29 | Fix accuracy problem in generic sin | Ulrich Drepper | |