about summary refs log tree commit diff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Fix attributes for fortify functions.Marek Polacek2012-04-291-1/+1
|
* Resolve __vector namespace conflict with Altivec.Petr Baudis2012-04-171-4/+4
|
* Replace Elf64_XXX with ElfW(XXX) in dl-irel.hH.J. Lu2012-03-221-0/+5
|
* Move math/math_private.h to sysdeps/generic/math_private.h.Richard Henderson2012-03-091-1/+0
| | | | This reverts commit 60d6f5a6f50d838bcb4240fcc0223cac445c6c83.
* Fix sparc build after recent math changes.David S. Miller2012-03-091-0/+1
| | | | * include/math_private.h: New file.
* Remove oldish __GNUC_PREREQ.Marek Polacek2012-03-031-5/+1
|
* Include <dirstream.h> before <dirent/dirent.h>Andreas Schwab2012-02-281-1/+3
|
* Add first fixes for conformtest for POSIX2008Ulrich Drepper2012-02-265-0/+10
|
* First steps to get conformtest fully workingUlrich Drepper2012-02-2548-23/+115
|
* Move __STDC_* predefined macros from features.h to stdc-predef.h.Joseph Myers2012-02-222-8/+40
|
* Replace FSF snail mail address with URLs.Paul Eggert2012-02-0913-39/+26
|
* Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().Chris Metcalf2012-01-281-0/+6
|
* Fix gets problemsUlrich Drepper2012-01-241-0/+22
|
* Optimize xmalloc, xcalloc, xrealloc, and xstrdupUlrich Drepper2012-01-081-0/+7
| | | | | Add alloc_size attribute and apply consistently the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
* Add checking versions of poll and ppollUlrich Drepper2012-01-082-0/+2
|
* More fallout from supporting only ELFUlrich Drepper2012-01-081-49/+25
|
* Remove pre-ISO C supportUlrich Drepper2012-01-0736-267/+264
| | | | No more __const.
* Remove non-ELF supportUlrich Drepper2012-01-072-83/+38
|
* Missed half the support for __USE_ISOC11Ulrich Drepper2012-01-011-0/+2
|
* Add __USE_ISOCXX11Ulrich Drepper2012-01-011-0/+10
|
* Support C11 __STDC_SOURCE__ and _ISOC11_SOURCEUlrich Drepper2012-01-011-6/+12
|
* Preliminaries for 2.15 release glibc-2.15Ulrich Drepper2011-12-231-1/+1
|
* Fix __readlink declaration.Roland McGrath2011-11-111-1/+1
|
* Account for alloca size rounding in extend_allocaAndreas Schwab2011-11-011-3/+7
|
* Cache network interface informationUlrich Drepper2011-10-311-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.
* Optimize access to isXYZ and toXYZ tablesUlrich Drepper2011-10-151-12/+8
| | | | | The functions to get the pointers can now depend on the TLS variable be initialized.
* Optimize use of isnan, isinf, finiteUlrich Drepper2011-10-081-0/+4
|
* Don't call ifunc functions in trace modeAndreas Schwab2011-10-051-0/+1
|
* Remove support for !USE___THREADUlrich Drepper2011-09-104-49/+17
|
* Cleanup of configuration optionsUlrich Drepper2011-09-102-27/+8
| | | | Make several tool features mandatory and simplify the code.
* Add range checking for FD_SET, FD_CLR, and FD_ISSETUlrich Drepper2011-09-081-0/+1
|
* Clean up PLT use for scandiratAndreas Schwab2011-08-111-5/+2
|
* Implement scandirat functionUlrich Drepper2011-08-091-0/+14
|
* 2.14 release glibc-2.14Ulrich Drepper2011-05-311-1/+1
|
* Don't unconditionally use alloca in gaih_inetUlrich Drepper2011-05-201-5/+14
|
* Fix a few problems in fopen and freopenUlrich Drepper2011-05-151-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).
* Use mmap for allocation of buffers used for __abort_msgUlrich Drepper2011-05-152-4/+15
|
* Make complete getcwd work in rtldUlrich Drepper2011-05-081-0/+4
|
* Fix Linux getcwd for long pathsUlrich Drepper2011-05-082-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).
* Optimize fdopendir a bit.Ulrich Drepper2011-05-081-1/+2
| | | | Don't call fcntl(F_SETFD) unnecessarily.
* Obsolete RPC implementation in libc.Ulrich Drepper2011-04-1614-143/+139
|
* Update comment about feature macros.Ulrich Drepper2011-04-021-0/+1
|
* Fix copy relocations handling of unique objects.Ulrich Drepper2011-03-101-1/+0
|
* Fix memory leak in dlopen with RTLD_NOLOAD.Andreas Schwab2011-02-251-1/+4
|
* 2.13 release glibc-2.13Ulrich Drepper2011-01-171-2/+3
|
* Clean up PLT use for getrlimit64.Ulrich Drepper2011-01-131-0/+1
|
* Fix PLT use due to __libc_alloca_cutoff.Ulrich Drepper2011-01-131-0/+1
|
* Fix typo in comment.Ulrich Drepper2010-12-091-1/+1
|
* Require suid bit on audit objects in privileged programsAndreas Schwab2010-10-241-0/+1
|
* Correct implementation of fmaf.Jakub Jelinek2010-10-111-0/+2
|