aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2012-03-03Remove oldish __GNUC_PREREQ.Marek Polacek1-5/+1
2012-02-28Include <dirstream.h> before <dirent/dirent.h>Andreas Schwab1-1/+3
2012-02-26Add first fixes for conformtest for POSIX2008Ulrich Drepper5-0/+10
2012-02-25First steps to get conformtest fully workingUlrich Drepper48-23/+115
2012-02-22Move __STDC_* predefined macros from features.h to stdc-predef.h.Joseph Myers2-8/+40
2012-02-09Replace FSF snail mail address with URLs.Paul Eggert13-39/+26
2012-01-28Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().Chris Metcalf1-0/+6
2012-01-24Fix gets problemsUlrich Drepper1-0/+22
2012-01-08Optimize xmalloc, xcalloc, xrealloc, and xstrdupUlrich Drepper1-0/+7
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 Drepper2-0/+2
2012-01-08More fallout from supporting only ELFUlrich Drepper1-49/+25
2012-01-07Remove pre-ISO C supportUlrich Drepper36-267/+264
No more __const.
2012-01-07Remove non-ELF supportUlrich Drepper2-83/+38
2012-01-01Missed half the support for __USE_ISOC11Ulrich Drepper1-0/+2
2012-01-01Add __USE_ISOCXX11Ulrich Drepper1-0/+10
2012-01-01Support C11 __STDC_SOURCE__ and _ISOC11_SOURCEUlrich Drepper1-6/+12
2011-12-23Preliminaries for 2.15 releaseglibc-2.15Ulrich Drepper1-1/+1
2011-11-11Fix __readlink declaration.Roland McGrath1-1/+1
2011-11-01Account for alloca size rounding in extend_allocaAndreas Schwab1-3/+7
2011-10-31Cache network interface informationUlrich Drepper1-0/+5
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 Drepper1-12/+8
The functions to get the pointers can now depend on the TLS variable be initialized.
2011-10-08Optimize use of isnan, isinf, finiteUlrich Drepper1-0/+4
2011-10-05Don't call ifunc functions in trace modeAndreas Schwab1-0/+1
2011-09-10Remove support for !USE___THREADUlrich Drepper4-49/+17
2011-09-10Cleanup of configuration optionsUlrich Drepper2-27/+8
Make several tool features mandatory and simplify the code.
2011-09-08Add range checking for FD_SET, FD_CLR, and FD_ISSETUlrich Drepper1-0/+1
2011-08-11Clean up PLT use for scandiratAndreas Schwab1-5/+2
2011-08-09Implement scandirat functionUlrich Drepper1-0/+14
2011-05-312.14 releaseglibc-2.14Ulrich Drepper1-1/+1
2011-05-20Don't unconditionally use alloca in gaih_inetUlrich Drepper1-5/+14
2011-05-15Fix a few problems in fopen and freopenUlrich Drepper1-0/+2
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 Drepper2-4/+15
2011-05-08Make complete getcwd work in rtldUlrich Drepper1-0/+4
2011-05-08Fix Linux getcwd for long pathsUlrich Drepper2-0/+4
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 Drepper1-1/+2
Don't call fcntl(F_SETFD) unnecessarily.
2011-04-16Obsolete RPC implementation in libc.Ulrich Drepper14-143/+139
2011-04-02Update comment about feature macros.Ulrich Drepper1-0/+1
2011-03-10Fix copy relocations handling of unique objects.Ulrich Drepper1-1/+0
2011-02-25Fix memory leak in dlopen with RTLD_NOLOAD.Andreas Schwab1-1/+4
2011-01-172.13 releaseglibc-2.13Ulrich Drepper1-2/+3
2011-01-13Clean up PLT use for getrlimit64.Ulrich Drepper1-0/+1
2011-01-13Fix PLT use due to __libc_alloca_cutoff.Ulrich Drepper1-0/+1
2010-12-09Fix typo in comment.Ulrich Drepper1-1/+1
2010-10-24Require suid bit on audit objects in privileged programsAndreas Schwab1-0/+1
2010-10-11Correct implementation of fmaf.Jakub Jelinek1-0/+2
2010-09-01Remove duplicate version of pmap_getport from NIS code.Ulrich Drepper1-0/+5
2010-05-03Prepare for release.glibc-2.12Ulrich Drepper1-1/+1
2010-03-27Fix handling of __need_mbstate_t and __need_wint_t.Ulrich Drepper1-0/+5
Like the real header, the libc-internal wrapper for wchar.h needs to undefine the macros so that if the header was already included before the macros don't stay defined and cause problems later.
2010-03-24Fix Linux getlogin{_r,} implementationUlrich Drepper1-0/+3
The old implementation uses fd 0 to determine the login TTY. This was needed because using /dev/tty it is not possible to deduce the login TTY. For some time now there is the pseudo-file /proc/self/loginuid which directly helps us to find the user. Prefer using this file. It also works if stdin is closed, redirected, or re-opened.
2010-03-24Fix handling of STB_GNU_UNIQUE in LD_TRACE_PRELINKINGUlrich Drepper1-1/+5