diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-08 19:09:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-08 19:09:39 +0000 |
commit | 883bc19b7c819edce146ca43b77991f7dcf0608b (patch) | |
tree | 33786f9e6d51680425f70d294b35237aa03f71da /locale | |
parent | 8ab69eb33086a5cb11846414487fe22da5b93154 (diff) | |
download | glibc-883bc19b7c819edce146ca43b77991f7dcf0608b.tar.gz glibc-883bc19b7c819edce146ca43b77991f7dcf0608b.tar.xz glibc-883bc19b7c819edce146ca43b77991f7dcf0608b.zip |
* locale/loadlocale.c (_nl_load_locale): Use MAP_INHERIT flag in
mmap call. * configure.in (os=freebsd*|bsdi*): Set base_os=unix/bsd/bsd4.4 for these too. * sysdeps/unix/sysv/tcsetattr.c: Use |= instead of = to properly set c_oflag value. * Makeconfig [! objpfx] (csu-objpfx): Add trailing slash. * locale/Makefile (categories): Uncomment collate. * locale/lc-collate.c: New file.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/Makefile | 2 | ||||
-rw-r--r-- | locale/lc-collate.c | 22 | ||||
-rw-r--r-- | locale/loadlocale.c | 7 |
3 files changed, 29 insertions, 2 deletions
diff --git a/locale/Makefile b/locale/Makefile index ec80014c99..87a6706e05 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -24,7 +24,7 @@ subdir := locale headers := locale.h distribute := localeinfo.h categories.def routines := setlocale loadlocale localeconv -categories := ctype messages monetary numeric time # collate +categories := ctype messages monetary numeric time collate aux = $(categories:%=lc-%) $(categories:%=C-%) include ../Rules diff --git a/locale/lc-collate.c b/locale/lc-collate.c new file mode 100644 index 0000000000..8684f23266 --- /dev/null +++ b/locale/lc-collate.c @@ -0,0 +1,22 @@ +/* Define current locale data for LC_COLLATE category. +Copyright (C) 1995 Free Software Foundation, Inc. +This file is part of the GNU C Library. + +The GNU C Library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public License as +published by the Free Software Foundation; either version 2 of the +License, or (at your option) any later version. + +The GNU C Library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with the GNU C Library; see the file COPYING.LIB. If +not, write to the Free Software Foundation, Inc., 675 Mass Ave, +Cambridge, MA 02139, USA. */ + +#include "localeinfo.h" + +_NL_CURRENT_DEFINE (LC_COLLATE); diff --git a/locale/loadlocale.c b/locale/loadlocale.c index f3e8e4ad9b..bc9102bf28 100644 --- a/locale/loadlocale.c +++ b/locale/loadlocale.c @@ -106,8 +106,13 @@ _nl_load_locale (int category, char **name) /* Some systems do not have this flag; it is superfluous. */ #define MAP_FILE 0 #endif +#ifndef MAP_INHERIT + /* Some systems might lack this; they lose. */ +#define MAP_INHERIT 0 +#endif filedata = (void *) __mmap ((caddr_t) 0, st.st_size, - PROT_READ, MAP_FILE|MAP_COPY, fd, 0); + PROT_READ, MAP_FILE|MAP_COPY|MAP_INHERIT, + fd, 0); if (filedata == (void *) -1) { if (errno == ENOSYS) |