aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-11-01Account for alloca size rounding in extend_allocaAndreas Schwab3-9/+15
2011-11-01Ignore libaudit.h when checking for system header useAndreas Schwab2-1/+3
2011-11-01Properly set extra-objs in nscd makefileAndreas Schwab2-1/+5
2011-11-01Fix tst-rfc3484 build failuresUlrich Drepper4-0/+22
2011-11-01unsigned long it better for the size argumentsUlrich Drepper1-4/+6
The new syscalls should use unsigned long not size_t. The parameters are not a direct measure of memory size.
2011-11-01New Linux syscalls process_vm_readv and process_vm_writevUlrich Drepper5-2/+40
2011-11-01Use kernel headers for netlink definitionsUlrich Drepper2-1/+6
2011-10-31Use extend_alloca in _dl_map_object_deps.Paul Pluzhnikov2-2/+22
2011-10-31Unify getent output for initgroups databaseUlrich Drepper3-2/+12
Requests for other fail if iteration is not supported and no parameters are given. Do this for initgroups as well.
2011-10-31Fix typo in CLUlrich Drepper1-1/+1
2011-10-31Cache network interface informationUlrich Drepper10-46/+359
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-30Fix potential double close in __check_fd if OOMUlrich Drepper2-15/+24
2011-10-29Add bug numberUlrich Drepper1-2/+2
2011-10-29Avoid assertion in processes with VM in bad shapeUlrich Drepper2-4/+8
2011-10-29Mark a few more functions with __THROWNL.Ulrich Drepper3-12/+18
2011-10-29Add missing register initialization in x86-64 pthread_cond_timedwaitUlrich Drepper3-4/+12
2011-10-29Fix accuracy problem in generic sinUlrich Drepper4-5/+13
2011-10-29Typo in last checkinUlrich Drepper1-1/+1
2011-10-29Correctly NUL-terminate link name in sprofUlrich Drepper3-4/+9
2011-10-29Cleanups in ldconfig's chroot handlingUlrich Drepper2-3/+4
2011-10-29Avoid warning in dl-lookup.cUlrich Drepper2-2/+4
2011-10-29Fix readlink call in ldconfig's chroot handlingThomas Jarosch3-4/+9
2011-10-29Add strchrnul performance testUlrich Drepper4-8/+27
2011-10-29Update Spanish translationUlrich Drepper2-4903/+5389
2011-10-29Update Italian translationUlrich Drepper2-3/+7
2011-10-28More cleanups of x86-64 strstrUlrich Drepper2-13/+14
2011-10-28Clean up x86-64 strcasestrUlrich Drepper2-13/+17
Actually describe in the C code what is going on.
2011-10-28Remove code without too much effectsUlrich Drepper16-113/+28
Some of the AVX-specific code is not giving enough speed-up to justify the extra code.
2011-10-28Fix some warning nitsAndreas Schwab3-7/+9
2011-10-28Move wide char related routines to wcsmbs subdirAndreas Schwab2-3/+12
2011-10-27Don't mark memory synchronisation functions as leafAndreas Schwab7-26/+45
2011-10-26BZ#13349: Missing BZ tag for last change.Roland McGrath1-0/+1
2011-10-26Remove mention of open_obstack_stream, which has never existed in libio.Roland McGrath3-60/+7
2011-10-26Fix uses of math_force_evalAndreas Schwab4-6/+10
2011-10-26Make math_force_eval accept non-addressable argumentsAndreas Schwab3-5/+13
2011-10-25Add AVX optimized versions for some x86-64 math functionsUlrich Drepper30-92/+370
2011-10-25Typo in CLUlrich Drepper1-1/+1
2011-10-25Optimize x86-64 SSE4.2+ strcmp a bit moreUlrich Drepper2-175/+135
2011-10-25Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper4-31/+42
2011-10-25Use math_force_eval in more placesUlrich Drepper21-310/+257
2011-10-25Use correct signedness in default implementations of wcscmp and wmemcmpAndreas Schwab3-20/+23
2011-10-25Fix strchr testAndreas Schwab2-11/+19
2011-10-25Use VEX encoding in inline math functions on x86-64 when possibleUlrich Drepper2-48/+142
2011-10-25Small optimization of dependency sortingAndreas Schwab3-2/+8
2011-10-25Cleanup FMA4 patchUlrich Drepper47-198/+494
Move the FMA4 code into its own section. Avoid some of the duplication of data resulting from the double use of source files.
2011-10-24Better DLA_FMSUlrich Drepper2-3/+12
It's better to use __builtin_fma if it works. Use it for gcc 4.6 and higher. Move the x86-64 dla.h to the correct place.
2011-10-24Remove warnings in NPTL testsUlrich Drepper5-9/+17
2011-10-24Use inline asm for DLA_FMS because of broken old compilersUlrich Drepper2-2/+9
2011-10-24Optimize accurate 64-bit routines for FMA4 on x86-64Ulrich Drepper48-177/+595
2011-10-24Finish renamed DLA_FMA -> DLA_FMSUlrich Drepper9-9/+22