aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-21Set stream errors in more casesUlrich Drepper
Also avoid unnecessarily setting errno when testing for TTY.
2011-05-20Don't unconditionally use alloca in gaih_inetUlrich Drepper
2011-05-20Update documentation in regex.hReuben Thomas
2011-05-20Prevent Altivec and VSX insns on PowerPC64 when no FPRs or VRs are avail.Ryan S. Arnold
(cherry picked from commit 4749a0058b27274a95c5a798e339c7299cdf890e) Conflicts: ChangeLog
2011-05-19Remove __libc_alloca_cutoff workaroundAndreas Schwab
2011-05-19Cleanup namespace use.Ulrich Drepper
2011-05-18Fix whitespaceUlrich Drepper
2011-05-18Fix typo in x86-64 powlH.J. Lu
2011-05-17Fix fileops.c build for old kernelsH.J. Lu
2011-05-17Update GB18030 to 2005 versionUlrich Drepper
2011-05-16Update RE_SYNTAX*_AWK constants in regex.hAharon Robbins
2011-05-16Handle long variable names in putenvUlrich Drepper
2011-05-16Fix reporting of invalid timeouts in emulated pselectUlrich Drepper
2011-05-16Fix test for error_one_per_line mode in errorUlrich Drepper
2011-05-16Remove shortcut for call of chownUlrich Drepper
The UID might differ, too. Just call chown unconditionally.
2011-05-16Cleanup x86-64 sys/user.hUlrich Drepper
2011-05-16Add work and week day info to sl_SI localeSašo Živanovic
2011-05-16Recode se_NO locale file to UTF-8Ulrich Drepper
2011-05-16Avoid potential deadlock in mtraceUlrich Drepper
The _dl_addr function might have to call malloc which would lead to a deadlock. Avoid by calling _dl_addr early.
2011-05-16Remove USE_MTRACE_FILE support from mtraceUlrich Drepper
2011-05-15Fix a few problems in fopen and freopenUlrich Drepper
fopen should set the FD_CLOEXEC flag if requested evenif the kernel does not support an aotmic operation. freopen should reuse the file descriptor for the stream. This is especially important for calls to change the standard streams (stin, stdout, stderr).
2011-05-15Provide more helpful error message in getoptUlrich Drepper
If provide with an ambiguous long option we now show all the possibilities.
2011-05-15Whitespace fixesUlrich Drepper
2011-05-15Update configure helper scriptsUlrich Drepper
2011-05-15Fix typoe in CLUlrich Drepper
2011-05-15Fix whitespacesUlrich Drepper
2011-05-15Move Dzonghka collation rules to common collation rules fileUlrich Drepper
2011-05-15Fix some fields in time info in sv_FI localeJohan Heikkila
2011-05-15sysconf on Linux/ia64 reported outdate versions for some optionsUlrich Drepper
The code is also cleaned up to avoid inefficiencies.
2011-05-15Make stack canary value harder to read through read overflowUlrich Drepper
2011-05-15Use non-cancelable interfaces in setup codeUlrich Drepper
2011-05-15Fix typo in last checkinUlrich Drepper
I referenced the attachment, not th eBZ number
2011-05-15Add entry for Sorani languageUlrich Drepper
2011-05-15Use mmap for allocation of buffers used for __abort_msgUlrich Drepper
2011-05-14Last patch also fixes BZ 11952Ulrich Drepper
2011-05-14Fix handling of static TLS in dlopen'ed objectsMartin von Gagern
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.
2011-05-14Fix time format in en_SG localeKH Teo
2011-05-14Fix initialization of optimization values for AIOUlrich Drepper
2011-05-14Fix handling of conversion problem in CP932 moduleUlrich Drepper
2011-05-14Fix typo in commentUlrich Drepper
2011-05-14Fix potential problem with out-of-scope bufferUlrich Drepper
2011-05-14Initialize variable in _IO_new_file_close_itUlrich Drepper
The last change left a variable in some situations uninitialized.
2011-05-14Handle recursive calls in backtrace betterUlrich Drepper
2011-05-14Optimize conversion of single character in gconvUlrich Drepper
2011-05-14Fix handling of incomplete character storage in stateUlrich Drepper
If iconv is called more than once in a row for adding bytes to the sequence while still remain under the minimum size of a character and if STORE_REST is defined, we didn't consume any input. Fix that.
2011-05-13Add support for generated PIE link rulesAndreas Schwab
2011-05-13Fix error messages in test.Ulrich Drepper
2011-05-13Fix file descriptor position after fcloseUlrich Drepper
fclose should leave the file descriptor position after the last read or written byte.
2011-05-12Fix resizing able for unique symbols when adding symbol for copy relocationPiotr Bury
2011-05-11Fix sched_setscheduler call in spawn implementationUlrich Drepper