Go to file
Florian Weimer f0c28504a9 nss_files: Allocate nscd file registration data on the heap
This is only needed if nss_files is loaded by nscd.

Before:

   text	   data	    bss	    dec	    hex	filename
    767	      0	  24952	  25719	   6477	nss/files-init.os

After:

   text	   data	    bss	    dec	    hex	filename
    666	      0	      0	    666	    29a	nss/files-init.os

Using PATH_MAX bytes unconditionally for the directory name
is wasteful, but fixing that would constitute another break
of this semi-public ABI.  (The other issue is that with
symbolic links, an arbitrary set of parent directories may need
watching, not just a single one.)

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
2021-07-07 18:33:52 +02:00
argp
assert
benchtests
bits
catgets
ChangeLog.old
conform
crypt
csu
ctype
debug
dirent
dlfcn elf: Clean up GLIBC_PRIVATE exports of internal libdl symbols 2021-07-07 08:41:24 +02:00
elf elf: Clean up GLIBC_PRIVATE exports of internal libdl symbols 2021-07-07 08:41:24 +02:00
gmon
gnulib
grp
gshadow
hesiod
htl
hurd
iconv libio: Replace internal _IO_getdelim symbol with __getdelim 2021-07-07 18:33:52 +02:00
iconvdata
include libio: Replace internal _IO_getdelim symbol with __getdelim 2021-07-07 18:33:52 +02:00
inet inet: Add hidden prototype for __inet_network 2021-07-07 18:33:52 +02:00
intl
io
libio libio: Replace internal _IO_getdelim symbol with __getdelim 2021-07-07 18:33:52 +02:00
locale
localedata
login login: Move libutil into libc 2021-06-30 08:43:37 +02:00
mach
malloc tests-exclude-mcheck: Fix typo 2021-07-07 13:28:53 +05:30
manual glibc.malloc.check: Fix nit in documentation 2021-07-07 07:02:13 +05:30
math
mathvec
misc Linux: Cleanups after librt move 2021-06-28 09:51:01 +02:00
nis
nptl nptl: Reduce the GLIBC_PRIVATE ABI 2021-07-07 08:41:21 +02:00
nptl_db nptl_db: Re-use the ELF-to-abilist converter for ABI checking 2021-06-29 22:17:08 +02:00
nscd
nss nss_files: Allocate nscd file registration data on the heap 2021-07-07 18:33:52 +02:00
po
posix Fix extra PLT reference in libc.so due to __glob64_time64 if build with gcc 7.5 on 32bit. 2021-07-01 16:46:59 +02:00
pwd
resolv resolv: Move libanl into libc (if libpthread is in libc) 2021-07-02 11:45:00 +02:00
resource
rt Linux: Cleanups after librt move 2021-06-28 09:51:01 +02:00
scripts Use Linux 5.13 in build-many-glibcs.py 2021-06-30 13:29:08 +00:00
setjmp
shadow
signal
socket
soft-fp soft-fp: Add __extendhfsf2/__extendhfdf2, __truncsfhf2/__truncdfhf2, __eqhf2/__nehf2 2021-07-07 08:01:32 -07:00
stdio-common libio: Replace internal _IO_getdelim symbol with __getdelim 2021-07-07 18:33:52 +02:00
stdlib
string
sunrpc
support
sysdeps libio: Replace internal _IO_getdelim symbol with __getdelim 2021-07-07 18:33:52 +02:00
sysvipc Linux: Cleanups after librt move 2021-06-28 09:51:01 +02:00
termios
time Linux: Cleanups after librt move 2021-06-28 09:51:01 +02:00
timezone
wcsmbs
wctype
.gitattributes
.gitignore
abi-tags
aclocal.m4
config.h.in
config.make.in
configure
configure.ac
COPYING
COPYING.LIB
extra-lib.mk
gen-locales.mk
INSTALL
libc-abis
libof-iterator.mk
LICENSES
MAINTAINERS
Makeconfig resolv: Move libanl into libc (if libpthread is in libc) 2021-07-02 11:45:00 +02:00
Makefile
Makefile.help
Makefile.in
Makerules
NEWS mtrace: Deprecate mallwatch and tr_break 2021-07-03 00:47:34 +05:30
o-iterator.mk
README
Rules Add mcheck tests to malloc 2021-07-02 17:03:42 +05:30
shlib-versions
test-skeleton.c
version.h

This directory contains the sources of the GNU C Library.
See the file "version.h" for what release version you have.

The GNU C Library is the standard system C library for all GNU systems,
and is an important part of what makes up a GNU system.  It provides the
system API for all programs written in C and C-compatible languages such
as C++ and Objective C; the runtime facilities of other programming
languages use the C library to access the underlying operating system.

In GNU/Linux systems, the C library works with the Linux kernel to
implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.

The GNU C Library implements much of the POSIX.1 functionality in the
GNU/Hurd system, using configurations i[4567]86-*-gnu.

When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 3.2 or later.

Also note that the shared version of the libgcc_s library must be
installed for the pthread library to work correctly.

The GNU C Library supports these configurations for using Linux kernels:

	aarch64*-*-linux-gnu
	alpha*-*-linux-gnu
	arc*-*-linux-gnu
	arm-*-linux-gnueabi
	csky-*-linux-gnuabiv2
	hppa-*-linux-gnu
	i[4567]86-*-linux-gnu
	x86_64-*-linux-gnu	Can build either x86_64 or x32
	ia64-*-linux-gnu
	m68k-*-linux-gnu
	microblaze*-*-linux-gnu
	mips-*-linux-gnu
	mips64-*-linux-gnu
	powerpc-*-linux-gnu	Hardware or software floating point, BE only.
	powerpc64*-*-linux-gnu	Big-endian and little-endian.
	s390-*-linux-gnu
	s390x-*-linux-gnu
	riscv32-*-linux-gnu
	riscv64-*-linux-gnu
	sh[34]-*-linux-gnu
	sparc*-*-linux-gnu
	sparc64*-*-linux-gnu

If you are interested in doing a port, please contact the glibc
maintainers; see https://www.gnu.org/software/libc/ for more
information.

See the file INSTALL to find out how to configure, build, and install
the GNU C Library.  You might also consider reading the WWW pages for
the C library at https://www.gnu.org/software/libc/.

The GNU C Library is (almost) completely documented by the Texinfo manual
found in the `manual/' subdirectory.  The manual is still being updated
and contains some known errors and omissions; we regret that we do not
have the resources to work on the manual as much as we would like.  For
corrections to the manual, please file a bug in the `manual' component,
following the bug-reporting instructions below.  Please be sure to check
the manual in the current development sources to see if your problem has
already been corrected.

Please see https://www.gnu.org/software/libc/bugs.html for bug reporting
information.  We are now using the Bugzilla system to track all bug reports.
This web page gives detailed information on how to report bugs properly.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.  License copyright years may be
listed using range notation, e.g., 1996-2015, indicating that every year in
the range, inclusive, is a copyrightable year that would otherwise be listed
individually.