aboutsummaryrefslogtreecommitdiff
path: root/locale
AgeCommit message (Collapse)Author
2012-01-10Add noreturn attributeMarek Polacek
2012-01-08Optimize xmalloc, xcalloc, xrealloc, and xstrdupUlrich Drepper
Add alloc_size attribute and apply consistently the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
2012-01-08More fallout from supporting only ELFUlrich Drepper
2012-01-07Remove pre-ISO C supportUlrich Drepper
No more __const.
2012-01-01Update copyright yearUlrich Drepper
2011-12-22Add brx_IN localeUlrich Drepper
2011-11-30Fix access after end of search string in regex matcherAndreas Schwab
2011-11-15Use O_CLOEXEC in a few more placesUlrich Drepper
2011-11-08Use strcasecmp_l instead of strcasecmpUlrich Drepper
2011-10-08Clean up locarchive mmap reservation code.Roland McGrath
2011-09-10Cleanup of configuration optionsUlrich Drepper
Make several tool features mandatory and simplify the code.
2011-09-08Remove support for automatic cvs check-insUlrich Drepper
CVS use for glibc is long gone.
2011-08-14Clean up locale/Makefile variables for -D switches.Roland McGrath
2011-08-13Fix compile problemUlrich Drepper
l10nflist compiles for localedef now. Optimize a bit.
2011-06-10Quash some new warnings from GCC 4.6.Roland McGrath
2011-05-29Fix typo in last patch to locarchive.cUlrich Drepper
2011-05-28Handle failure of _nl_explode_name in all casesUlrich Drepper
2011-05-21Fix handling of LC_CTYPE in locale name handlingUlrich Drepper
2011-05-15Add entry for Sorani languageUlrich Drepper
2011-05-09Add ary language entry.Ulrich Drepper
2011-05-09Support Colon SignUlrich Drepper
Used in the Costa Rican locale and now also in the El Salvadorian locale.
2011-05-09Add wae_CH localeKevin Bortis
2011-05-09Use appropriate type for return value checkingUlrich Drepper
2011-05-09Transliterate U20B9.Ulrich Drepper
2011-04-22Remove doubled words.Jim Meyering
2011-01-17Update copyright year.Ulrich Drepper
2010-08-12Properly quote output of localeAndreas Schwab
2010-03-26Finish locale_data -> __locale_data transition.Richard Henderson
The transition that was begun here f095bb7204d80f609a73a22796edd6cffd4c6add was not complete. Signed-off-by: Richard Henderson <rth@twiddle.net>
2010-03-24ocale-archive differs between 32 and 64 bit platformsChris Demetriou
2010-03-15Update copyright year.Ulrich Drepper
2010-01-22_nl_load_locale() incorrectly handles mmap() failuresJoe Landers
2010-01-09Add support for XPG7 testing.Ulrich Drepper
The header conformance testing code needed extending for XPG7. This exposed a few bugs in the headers. There are more changes to come.
2009-11-17Add missing test files.Ulrich Drepper
2009-11-17Handle LC_GLOBAL_LOCALE in duplocale.Ulrich Drepper
2009-11-17Fix _NC_LOCALE_NAME definition.Ulrich Drepper
2009-10-30Add missing declarations.Andreas Schwab
2009-10-29Add sml entry to ISO 639 list.Ulrich Drepper
2009-10-05Fix week-1stday in C localeAndreas Schwab
2009-09-28Fix locale program error handlingUlrich Drepper
If an unknown name is passed to locale, report it and fail.
2009-09-07Fix endless loop in localedef.Ulrich Drepper
localedef got into an endless loop in case order_start was used for the unnamed_section twice and the first use didn't actually result into any definition.
2009-08-23Thread-local locale handling part of XPG7.Ulrich Drepper
I incorrectly enabled the definitions for XPG6.
2009-07-20Use correct index for _NL_CTYPE_NONASCII_CASE.Ulrich Drepper
2009-07-20Check generated locale for non-ASCII 8-bit characters with case conversion.Ulrich Drepper
If a locale does not have 8-bit characters with case conversion which are different from the ASCII conversion (±0x20) then we can perform some optimizations. These will follow later.
2009-05-16Remove redundant .gitignore files.Andreas Schwab
2009-05-15rename each .cvsignore file to .gitignoreJim Meyering
2009-04-27* locale/programs/locarchive.c (create_archive): Add MAP_PRIVATEcvs/fedora-glibc-20090427T1419Ulrich Drepper
to MAP_ANON in PROT_NONE mmap64 call. (open_archive): Likewise. (file_data_available_p): Use mmap64 instead of mremap. (enlarge_archive): Likewise. Update head if ah->addr changed. Attempt to reserve address space after mmap64 region.
2009-04-24* locale/programs/locarchive.c (enlarge_archive): Conserve addressUlrich Drepper
space when temporarily mapping the whole content of the old file.
2009-04-24[BZ #10100]Ulrich Drepper
2009-04-24 Ulrich Drepper <drepper@redhat.com> [BZ #10100] * misc/hsearch_r.c (hsearch_r): Add back ensurance that hval is not zero.
2009-04-24* locale/locarchive.h (struct locarhandle): Rename len field toUlrich Drepper
mmaped and add new reserved field. * locale/programs/locarchive.c (RESERVE_MMAP_SIZE): Define. (create_archive): Reserve address space and then map file into it. (open_archive): Likewise. (file_data_available_p): New function. (compare_from_file): New function. (close_archive): Adjust to member name changes. (add_locale): Before comparing locale data, check it is mapped. Otherwise fall back to reading from the file.
2009-04-18* locale/programs/locarchive.c (open_archive): Map the entire fileUlrich Drepper
and not just the administrative data. (add_locale): When we find a hash sum match compare the content to be sure.