about summary refs log tree commit diff
path: root/sysdeps
Commit message (Collapse)AuthorAgeFilesLines
* Prevent warnings due to long long constantsUlrich Drepper2011-12-234-80/+105
|
* Fix overrun in destination bufferLiubov Dmitrieva2011-12-232-508/+323
|
* Optimize x86-32 feraiseexcept also for !__SSE_MATH__Ulrich Drepper2011-12-231-1/+11
|
* Fix wrong copying processing for last bytes in x86-32 wcscpyLiubov Dmitrieva2011-12-231-41/+21
| | | | | | | | | | | 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.
* Add feraiseexcept optimization for x86-32Ulrich Drepper2011-12-221-1/+39
|
* Also retrieve SSE exceptions in x86-32 fegetexceptflagUlrich Drepper2011-12-221-4/+18
|
* Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper2011-12-225-32/+61
|\ | | | | | | | | Conflicts: ChangeLog
| * Support building bits/syscall.h for any number of subarch variants.Joseph Myers2011-12-225-32/+61
| |
* | Fix overrun in strcpy destination buffer in x86-32/SSSE3 versionLiubov Dmitrieva2011-12-221-745/+516
|/
* Use __REDIRECT_NTH for __feraiseexcept_renamedUlrich Drepper2011-12-221-1/+1
|
* Define EPOLLONESHOT and EPOLLET using unsigned valuesUlrich Drepper2011-12-213-9/+9
|
* Define x86_64 feraiseexcept inline only under __USE_EXTERN_INLINES.Rafael Ávila de Espíndola2011-12-211-1/+1
|
* Optimized strcasecmp for Power7Adhemerval Zanella2011-12-178-0/+283
|
* Fix WPUlrich Drepper2011-12-171-1/+1
|
* Simplify code for accessing powerpc GOTWill Schmidt2011-12-1731-159/+133
|
* Optimized nearbyint for PPCAdhemerval Zanella2011-12-174-0/+277
|
* WP fixesUlrich Drepper2011-12-171-1/+0
|
* Optimized wcschr and wcscpy for x86-64 and x86-32Ulrich Drepper2011-12-1716-2/+2427
|
* Optimize generic ELF hash function a bit moreUlrich Drepper2011-12-101-1/+4
|
* Fix a wrong constant in powerpc hypot implementationAndreas Schwab2011-12-061-1/+1
|
* Small optimization of generic ELF hash functionUlrich Drepper2011-12-041-25/+22
|
* Fix attreibute for _dl_elf_hashUlrich Drepper2011-12-041-1/+1
|
* Fix more warningsUlrich Drepper2011-12-034-12/+6
|
* SH atomic asms fix for gcc 4.7Ulrich Drepper2011-12-021-22/+28
|
* Implement SH backtrace using IA64 versionUlrich Drepper2011-12-021-0/+1
|
* Truncate time values in Linux futimes when falling back to utimeAndreas Schwab2011-12-011-3/+3
|
* Adjust libm test ulps for s390Andreas Schwab2011-11-301-4/+4
|
* Fix SSSE3/SSE4.2 strcasecmp[_l]/strncasecmp[_l] for non-PIC and ↵Andreas Schwab2011-11-162-12/+68
| | | | -mno-tls-direct-seg-refs
* Fix clock_gettime for assumed kernel >= 2.6.12Andreas Schwab2011-11-152-2/+10
|
* Pretty printingUlrich Drepper2011-11-151-1/+1
|
* Fix reference counting in network interface information cacheAndreas Schwab2011-11-151-1/+2
|
* Clean up internal fopen usesUlrich Drepper2011-11-153-4/+4
| | | | No need to ever not use c and e.
* Add SSE4.2 support for strcasecmp and strncasecmp on x86-32Ulrich Drepper2011-11-148-89/+470
|
* SSSE3 optimized strcasecmp and strncasecmp for x86-32Ulrich Drepper2011-11-1314-266/+1058
|
* Fix wanings in clock_gettimeUlrich Drepper2011-11-122-8/+8
|
* Avoid warnings about unused variable in 96-bit j0l and j1lUlrich Drepper2011-11-122-4/+4
|
* Avoid warnings about unused variables in 96-bit hypotlUlrich Drepper2011-11-121-2/+4
|
* Prepare dwarf2.h for multiple inclusionUlrich Drepper2011-11-121-0/+5
|
* Fix incomplete edit in last patchUlrich Drepper2011-11-121-2/+0
|
* Avoid redefinition of DWARF constantsUlrich Drepper2011-11-122-76/+47
|
* Avoid warning from shiftingUlrich Drepper2011-11-121-2/+6
|
* Fix warnings in fallback C code of x86-32 wide memory functionsUlrich Drepper2011-11-123-0/+12
|
* PowerPC: Arithmetic function optimizations for POWERAdhemerval Zanella2011-11-115-4/+138
|
* Remove unused variablesMarek Polacek2011-11-111-2/+2
|
* Remove unnecessary code from x86-32 SSSE3 strncmpUlrich Drepper2011-11-081-3/+1
|
* Fix test of non-ASCII locales in x86-64 strcasecmp et.al.Ulrich Drepper2011-11-012-5/+5
|
* unsigned long it better for the size argumentsUlrich Drepper2011-11-011-4/+6
| | | | | The new syscalls should use unsigned long not size_t. The parameters are not a direct measure of memory size.
* New Linux syscalls process_vm_readv and process_vm_writevUlrich Drepper2011-11-013-1/+30
|
* Cache network interface informationUlrich Drepper2011-10-313-38/+149
| | | | | | | | | | | | 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.
* Fix potential double close in __check_fd if OOMUlrich Drepper2011-10-301-15/+18
|