aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2012-05-16Update __STDC_ISO_10646__.Joseph Myers
2012-05-10Hurd: hidden_nolink macro for NO_HIDDEN case.Thomas Schwinge
2012-05-10Hurd: dup3Thomas Schwinge
2012-05-10Hurd: accept4Thomas Schwinge
2012-05-10Make sunrpc code usable againAndreas Jaeger
New configure option --enable-obsolete-rpc makes the deprecated RPC headers and functions available at compile time as they were before version 2.14. This option will be removed at some time in the future after the TI-RPC library becomes fully sufficient for the needs of existing applications.
2012-05-10Define __STDC_NO_THREADS__.Joseph Myers
2012-05-08Warn if user requests __FORTIFY_SOURCE but it is disabledRoland Mc Grath
[BZ #13979] * include/features.h: Warn if user requests __FORTIFY_SOURCE checking but the checks are disabled for any reason.
2012-04-29Fix attributes for fortify functions.Marek Polacek
2012-04-17Resolve __vector namespace conflict with Altivec.Petr Baudis
2012-03-22Replace Elf64_XXX with ElfW(XXX) in dl-irel.hH.J. Lu
2012-03-09Move math/math_private.h to sysdeps/generic/math_private.h.Richard Henderson
This reverts commit 60d6f5a6f50d838bcb4240fcc0223cac445c6c83.
2012-03-09Fix sparc build after recent math changes.David S. Miller
* include/math_private.h: New file.
2012-03-03Remove oldish __GNUC_PREREQ.Marek Polacek
2012-02-28Include <dirstream.h> before <dirent/dirent.h>Andreas Schwab
2012-02-26Add first fixes for conformtest for POSIX2008Ulrich Drepper
2012-02-25First steps to get conformtest fully workingUlrich Drepper
2012-02-22Move __STDC_* predefined macros from features.h to stdc-predef.h.Joseph Myers
2012-02-09Replace FSF snail mail address with URLs.Paul Eggert
2012-01-28Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().Chris Metcalf
2012-01-24Fix gets problemsUlrich Drepper
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-08Add checking versions of poll and ppollUlrich Drepper
2012-01-08More fallout from supporting only ELFUlrich Drepper
2012-01-07Remove pre-ISO C supportUlrich Drepper
No more __const.
2012-01-07Remove non-ELF supportUlrich Drepper
2012-01-01Missed half the support for __USE_ISOC11Ulrich Drepper
2012-01-01Add __USE_ISOCXX11Ulrich Drepper
2012-01-01Support C11 __STDC_SOURCE__ and _ISOC11_SOURCEUlrich Drepper
2011-12-23Preliminaries for 2.15 releaseglibc-2.15Ulrich Drepper
2011-11-11Fix __readlink declaration.Roland McGrath
2011-11-01Account for alloca size rounding in extend_allocaAndreas Schwab
2011-10-31Cache network interface informationUlrich Drepper
Whenever getaddrinfo needed network interface information it used the netlink interface to read the information every single time. The problem is that this information can change at any time. The patch implements monitoring of the network interfaces through nscd. If no change is detected the previously read information can be reused (which is the norm). This timestamp information is also made available to other processes using the shared memory segment between nscd and those processes.
2011-10-15Optimize access to isXYZ and toXYZ tablesUlrich Drepper
The functions to get the pointers can now depend on the TLS variable be initialized.
2011-10-08Optimize use of isnan, isinf, finiteUlrich Drepper
2011-10-05Don't call ifunc functions in trace modeAndreas Schwab
2011-09-10Remove support for !USE___THREADUlrich Drepper
2011-09-10Cleanup of configuration optionsUlrich Drepper
Make several tool features mandatory and simplify the code.
2011-09-08Add range checking for FD_SET, FD_CLR, and FD_ISSETUlrich Drepper
2011-08-11Clean up PLT use for scandiratAndreas Schwab
2011-08-09Implement scandirat functionUlrich Drepper
2011-05-312.14 releaseglibc-2.14Ulrich Drepper
2011-05-20Don't unconditionally use alloca in gaih_inetUlrich 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-15Use mmap for allocation of buffers used for __abort_msgUlrich Drepper
2011-05-08Make complete getcwd work in rtldUlrich Drepper
2011-05-08Fix Linux getcwd for long pathsUlrich Drepper
The getcwd syscall (so far?) can only handle path up to one page in size. There is no limit about directory hierarchy depth, though, and the POSIX getcwd is supposed to handle this. In that case fall back to the generic getcwd. Additionally, optimize the generic getcwd to use openat when possible to change the asymptotic performance from O(N^2) to O(n).
2011-05-08Optimize fdopendir a bit.Ulrich Drepper
Don't call fcntl(F_SETFD) unnecessarily.
2011-04-16Obsolete RPC implementation in libc.Ulrich Drepper
2011-04-02Update comment about feature macros.Ulrich Drepper
2011-03-10Fix copy relocations handling of unique objects.Ulrich Drepper