aboutsummaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)AuthorFilesLines
2011-06-04Fix <bits/mqueue2.h> for C++Jakub Jelinek1-2/+2
2011-05-30Handle DNS server failures in case of AF_UNSPEC lookups correctlyUlrich Drepper1-3/+3
2011-05-30Undo last patchUlrich Drepper1-6/+6
2011-05-30Add BZ number to NEWSUlrich Drepper1-6/+6
2011-05-30Handle DSOs without any dependency in ld.soUlrich Drepper1-2/+2
2011-05-29Restore _res correctlyUlrich Drepper1-7/+7
getaddrinfo works around the resolver functionality to avoid automatic IPv6 lookups. The restoring didn't allow for the resolver to set additional bits in _res.
2011-05-29Reference wrong BZUlrich Drepper1-1/+1
2011-05-29Interpret numeric values in shadow file as signedUlrich Drepper1-10/+10
2011-05-29Recognize use-vc option in resolv.confUlrich Drepper1-8/+9
2011-05-29Record when bug 11577 was fixed and by which patchUlrich Drepper1-5/+5
2011-05-29Don't build AVX tests with old compilersUlrich Drepper1-8/+8
2011-05-29Mark malloc hook variables as deprecatedUlrich Drepper1-0/+5
2011-05-29Declare malloc hook variables as volatile.Ulrich Drepper1-8/+8
2011-05-29Don't document si_code used for raise()Ulrich Drepper1-9/+9
2011-05-28Fix unnecessary overallocation due to incomplete characterUlrich Drepper1-1/+1
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.
2011-05-28Add sotruss programUlrich Drepper1-1/+4
2011-05-28Add sendmmsg syscallUlrich Drepper1-1/+1
2011-05-28Set setns system callUlrich Drepper1-1/+1
2011-05-27Use getcpu definition from vDSO on x86-64Ulrich Drepper1-1/+1
2011-05-27Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper1-1/+1
Conflicts: ChangeLog NEWS
2011-05-27Fix conversion to ISO-2022-JP-2 with ISO-8859-7 designationAndreas Schwab1-2/+2
2011-05-23Define RLIMIT_RTTIMEUlrich Drepper1-2/+2
2011-05-22Add a few more alloca size checksUlrich Drepper1-4/+4
2011-05-21Always fill output buffer in XPG strerror functionUlrich Drepper1-2/+2
2011-05-21Fix CP1258 conversionUlrich Drepper1-1/+2
a5 ec was mishandled and the other direction appropriately so, too.
2011-05-21Fix handling of LC_CTYPE in locale name handlingUlrich Drepper1-1/+1
2011-05-21Set stream errors in more casesUlrich Drepper1-2/+2
Also avoid unnecessarily setting errno when testing for TTY.
2011-05-20Don't unconditionally use alloca in gaih_inetUlrich Drepper1-6/+6
2011-05-20Update documentation in regex.hReuben Thomas1-8/+8
2011-05-18Fix typo in x86-64 powlH.J. Lu1-2/+2
2011-05-17Update GB18030 to 2005 versionUlrich Drepper1-8/+8
2011-05-16Handle long variable names in putenvUlrich Drepper1-7/+7
2011-05-16Fix reporting of invalid timeouts in emulated pselectUlrich Drepper1-7/+7
2011-05-16Fix test for error_one_per_line mode in errorUlrich Drepper1-1/+1
2011-05-16Remove shortcut for call of chownUlrich Drepper1-6/+7
The UID might differ, too. Just call chown unconditionally.
2011-05-16Cleanup x86-64 sys/user.hUlrich Drepper1-6/+6
2011-05-16Add work and week day info to sl_SI localeSašo Živanovic1-5/+5
2011-05-16Recode se_NO locale file to UTF-8Ulrich Drepper1-1/+1
2011-05-16Avoid potential deadlock in mtraceUlrich Drepper1-8/+8
The _dl_addr function might have to call malloc which would lead to a deadlock. Avoid by calling _dl_addr early.
2011-05-15Provide more helpful error message in getoptUlrich Drepper1-7/+7
If provide with an ambiguous long option we now show all the possibilities.
2011-05-15Update configure helper scriptsUlrich Drepper1-7/+7
2011-05-15Move Dzonghka collation rules to common collation rules fileUlrich Drepper1-7/+7
2011-05-15Fix some fields in time info in sv_FI localeJohan Heikkila1-7/+7
2011-05-15sysconf on Linux/ia64 reported outdate versions for some optionsUlrich Drepper1-7/+7
The code is also cleaned up to avoid inefficiencies.
2011-05-15Make stack canary value harder to read through read overflowUlrich Drepper1-6/+7
2011-05-15Fix typo in last checkinUlrich Drepper1-1/+1
I referenced the attachment, not th eBZ number
2011-05-15Add entry for Sorani languageUlrich Drepper1-7/+7
2011-05-15Use mmap for allocation of buffers used for __abort_msgUlrich Drepper1-6/+6
2011-05-14Last patch also fixes BZ 11952Ulrich Drepper1-5/+5
2011-05-14Fix handling of static TLS in dlopen'ed objectsMartin von Gagern1-4/+4
When dynamically loading a library along with several dependencies, calls to _dl_add_to_slotinfo and _dl_update_slotinfo can become intermixed. As a consequence, _dl_update_slotinfo will update the generation counter of the dtv although not all of the slots belonging to that generation have been added. Subsequent calls to _dl_add_to_slotinfo will add more slots to the same generation, for which no storage will be allocated, as the dtv generation checks will claim no work is necessary. This will lead to uninitialized dtv entries and will likely cause a SIGSEGV when thread local variables are accessed.