about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in last patch to locarchive.cUlrich Drepper2011-05-292-1/+4
|
* Same change for the other siginfi.h filesUlrich Drepper2011-05-294-6/+9
|
* Don't document si_code used for raise()Ulrich Drepper2011-05-293-11/+17
|
* Fix unnecessary overallocation due to incomplete characterUlrich Drepper2011-05-286-16/+70
| | | | | | When incomplete characters are found at the end of a string the code ran amok and allocated lots of memory. Stricter limits are now in place.
* Handle failure of _nl_explode_name in all casesUlrich Drepper2011-05-283-3/+19
|
* Remove unused variableUlrich Drepper2011-05-281-1/+0
|
* Fix bug in last checkin which left ldd uninstalledUlrich Drepper2011-05-281-1/+1
|
* Add sotruss programUlrich Drepper2011-05-285-1/+519
|
* Fix build for platforms with socketcall syscallUlrich Drepper2011-05-282-1/+4
|
* Unify messagesUlrich Drepper2011-05-283-4/+7
| | | | | Some shell scripts unnecessarily used different formats for some messages. Unify them to reduce the work of translators.
* Add support for time syscall in vDSOUlrich Drepper2011-05-283-1/+22
|
* Add sendmmsg syscallUlrich Drepper2011-05-288-3/+136
|
* Set setns system callUlrich Drepper2011-05-285-4/+18
|
* Use getcpu definition from vDSO on x86-64Ulrich Drepper2011-05-274-3/+25
|
* Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper2011-05-276-50/+66
|\ | | | | | | | | | | Conflicts: ChangeLog NEWS
| * Undo accidental change in x86-64 user.hJakub Jelinek2011-05-252-1/+6
| |
| * Update Japanese translationUlrich Drepper2011-05-252-44/+37
| |
| * Define RLIMIT_RTTIMEUlrich Drepper2011-05-234-6/+24
| |
* | Add test for last iconv bugUlrich Drepper2011-05-273-1/+75
| |
* | Fix conversion to ISO-2022-JP-2 with ISO-8859-7 designationAndreas Schwab2011-05-273-8/+13
|/
* Update longlong.h from GCCAndreas Schwab2011-05-232-5/+154
|
* Fix sysconf compilation for !HP_TIMING_AVAIL archsAndreas Schwab2011-05-233-4/+12
|
* Add a few more alloca size checksUlrich Drepper2011-05-225-111/+370
|
* Fix flags parameter value passed to pltenter and pltexitUlrich Drepper2011-05-222-7/+11
|
* Define CLOCK_REALTIME_ALARM and CLOCK_BOOTTIME_ALARMUlrich Drepper2011-05-212-0/+7
|
* Fix last changeUlrich Drepper2011-05-211-17/+12
| | | | And optimize a bit.
* Always fill output buffer in XPG strerror functionUlrich Drepper2011-05-213-10/+15
|
* Nicer output for negative error numbers in strerror_rUlrich Drepper2011-05-212-3/+14
|
* Fix CP1258 conversionUlrich Drepper2011-05-214-11/+17
| | | | a5 ec was mishandled and the other direction appropriately so, too.
* Fix configure visibility testsUlrich Drepper2011-05-213-7/+10
|
* Fix handling of LC_CTYPE in locale name handlingUlrich Drepper2011-05-216-5/+150
|
* Set stream errors in more casesUlrich Drepper2011-05-215-6/+33
| | | | Also avoid unnecessarily setting errno when testing for TTY.
* Don't unconditionally use alloca in gaih_inetUlrich Drepper2011-05-204-102/+367
|
* Update documentation in regex.hReuben Thomas2011-05-203-12/+25
|
* Prevent Altivec and VSX insns on PowerPC64 when no FPRs or VRs are avail.Ryan S. Arnold2011-05-202-2/+11
| | | | | | | | (cherry picked from commit 4749a0058b27274a95c5a798e339c7299cdf890e) Conflicts: ChangeLog
* Remove __libc_alloca_cutoff workaroundAndreas Schwab2011-05-192-6/+4
|
* Cleanup namespace use.Ulrich Drepper2011-05-193-2/+7
|
* Fix whitespaceUlrich Drepper2011-05-181-1/+1
|
* Fix typo in x86-64 powlH.J. Lu2011-05-185-5/+66
|
* Fix fileops.c build for old kernelsH.J. Lu2011-05-172-0/+5
|
* Update GB18030 to 2005 versionUlrich Drepper2011-05-175-64139/+10808
|
* Update RE_SYNTAX*_AWK constants in regex.hAharon Robbins2011-05-162-9/+16
|
* Handle long variable names in putenvUlrich Drepper2011-05-163-11/+32
|
* Fix reporting of invalid timeouts in emulated pselectUlrich Drepper2011-05-163-9/+23
|
* Fix test for error_one_per_line mode in errorUlrich Drepper2011-05-163-3/+10
|
* Remove shortcut for call of chownUlrich Drepper2011-05-163-8/+12
| | | | The UID might differ, too. Just call chown unconditionally.
* Cleanup x86-64 sys/user.hUlrich Drepper2011-05-163-49/+53
|
* Add work and week day info to sl_SI localeSašo Živanovic2011-05-163-20/+28
|
* Recode se_NO locale file to UTF-8Ulrich Drepper2011-05-162-30/+30
|
* Avoid potential deadlock in mtraceUlrich Drepper2011-05-163-31/+59
| | | | | The _dl_addr function might have to call malloc which would lead to a deadlock. Avoid by calling _dl_addr early.