about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Don't start AVC thread until credentials are installedAndreas Schwab2011-11-032-4/+7
|
* Don't fail in makedb if SELinux is disabledAndreas Schwab2011-11-032-1/+6
|
* Fix _IOT_sgttyb definition.Samuel Thibault2011-11-022-2/+6
|
* Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper2011-11-015-11/+23
|\
| * Account for alloca size rounding in extend_allocaAndreas Schwab2011-11-013-9/+15
| |
| * Ignore libaudit.h when checking for system header useAndreas Schwab2011-11-012-1/+3
| |
| * Properly set extra-objs in nscd makefileAndreas Schwab2011-11-012-1/+5
| |
* | Fix test of non-ASCII locales in x86-64 strcasecmp et.al.Ulrich Drepper2011-11-013-5/+8
|/
* Fix tst-rfc3484 build failuresUlrich Drepper2011-11-014-0/+22
|
* 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-015-2/+40
|
* Use kernel headers for netlink definitionsUlrich Drepper2011-11-012-1/+6
|
* Use extend_alloca in _dl_map_object_deps.Paul Pluzhnikov2011-10-312-2/+22
|
* Unify getent output for initgroups databaseUlrich Drepper2011-10-313-2/+12
| | | | | Requests for other fail if iteration is not supported and no parameters are given. Do this for initgroups as well.
* Fix typo in CLUlrich Drepper2011-10-311-1/+1
|
* Cache network interface informationUlrich Drepper2011-10-3110-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.
* Fix potential double close in __check_fd if OOMUlrich Drepper2011-10-302-15/+24
|
* Add bug numberUlrich Drepper2011-10-291-2/+2
|
* Avoid assertion in processes with VM in bad shapeUlrich Drepper2011-10-292-4/+8
|
* Mark a few more functions with __THROWNL.Ulrich Drepper2011-10-293-12/+18
|
* Add missing register initialization in x86-64 pthread_cond_timedwaitUlrich Drepper2011-10-293-4/+12
|
* Fix accuracy problem in generic sinUlrich Drepper2011-10-294-5/+13
|
* Typo in last checkinUlrich Drepper2011-10-291-1/+1
|
* Correctly NUL-terminate link name in sprofUlrich Drepper2011-10-293-4/+9
|
* Cleanups in ldconfig's chroot handlingUlrich Drepper2011-10-292-3/+4
|
* Avoid warning in dl-lookup.cUlrich Drepper2011-10-292-2/+4
|
* Fix readlink call in ldconfig's chroot handlingThomas Jarosch2011-10-293-4/+9
|
* Add strchrnul performance testUlrich Drepper2011-10-294-8/+27
|
* Update Spanish translationUlrich Drepper2011-10-292-4903/+5389
|
* Update Italian translationUlrich Drepper2011-10-292-3/+7
|
* More cleanups of x86-64 strstrUlrich Drepper2011-10-282-13/+14
|
* Clean up x86-64 strcasestrUlrich Drepper2011-10-282-13/+17
| | | | Actually describe in the C code what is going on.
* Remove code without too much effectsUlrich Drepper2011-10-2816-113/+28
| | | | | Some of the AVX-specific code is not giving enough speed-up to justify the extra code.
* Fix some warning nitsAndreas Schwab2011-10-283-7/+9
|
* Move wide char related routines to wcsmbs subdirAndreas Schwab2011-10-282-3/+12
|
* Don't mark memory synchronisation functions as leafAndreas Schwab2011-10-277-26/+45
|
* BZ#13349: Missing BZ tag for last change.Roland McGrath2011-10-261-0/+1
|
* Remove mention of open_obstack_stream, which has never existed in libio.Roland McGrath2011-10-263-60/+7
|
* Fix uses of math_force_evalAndreas Schwab2011-10-264-6/+10
|
* Make math_force_eval accept non-addressable argumentsAndreas Schwab2011-10-263-5/+13
|
* Add AVX optimized versions for some x86-64 math functionsUlrich Drepper2011-10-2530-92/+370
|
* Typo in CLUlrich Drepper2011-10-251-1/+1
|
* Optimize x86-64 SSE4.2+ strcmp a bit moreUlrich Drepper2011-10-252-175/+135
|
* Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper2011-10-254-31/+42
|\
| * Use correct signedness in default implementations of wcscmp and wmemcmpAndreas Schwab2011-10-253-20/+23
| |
| * Fix strchr testAndreas Schwab2011-10-252-11/+19
| |
* | Use math_force_eval in more placesUlrich Drepper2011-10-2521-310/+257
|/
* Use VEX encoding in inline math functions on x86-64 when possibleUlrich Drepper2011-10-252-48/+142
|
* Small optimization of dependency sortingAndreas Schwab2011-10-253-2/+8
|
* Cleanup FMA4 patchUlrich Drepper2011-10-2547-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.