Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add first fixes for conformtest for POSIX2008 | 2012-02-26 | 5 | -0/+10 | |
| | |||||
* | First steps to get conformtest fully working | 2012-02-25 | 48 | -23/+115 | |
| | |||||
* | Move __STDC_* predefined macros from features.h to stdc-predef.h. | 2012-02-22 | 2 | -8/+40 | |
| | |||||
* | Replace FSF snail mail address with URLs. | 2012-02-09 | 13 | -39/+26 | |
| | |||||
* | Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait(). | 2012-01-28 | 1 | -0/+6 | |
| | |||||
* | Fix gets problems | 2012-01-24 | 1 | -0/+22 | |
| | |||||
* | Optimize xmalloc, xcalloc, xrealloc, and xstrdup | 2012-01-08 | 1 | -0/+7 | |
| | | | | | Add alloc_size attribute and apply consistently the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup. | ||||
* | Add checking versions of poll and ppoll | 2012-01-08 | 2 | -0/+2 | |
| | |||||
* | More fallout from supporting only ELF | 2012-01-08 | 1 | -49/+25 | |
| | |||||
* | Remove pre-ISO C support | 2012-01-07 | 36 | -267/+264 | |
| | | | | No more __const. | ||||
* | Remove non-ELF support | 2012-01-07 | 2 | -83/+38 | |
| | |||||
* | Missed half the support for __USE_ISOC11 | 2012-01-01 | 1 | -0/+2 | |
| | |||||
* | Add __USE_ISOCXX11 | 2012-01-01 | 1 | -0/+10 | |
| | |||||
* | Support C11 __STDC_SOURCE__ and _ISOC11_SOURCE | 2012-01-01 | 1 | -6/+12 | |
| | |||||
* | Preliminaries for 2.15 releaseglibc-2.15 | 2011-12-23 | 1 | -1/+1 | |
| | |||||
* | Fix __readlink declaration. | 2011-11-11 | 1 | -1/+1 | |
| | |||||
* | Account for alloca size rounding in extend_alloca | 2011-11-01 | 1 | -3/+7 | |
| | |||||
* | Cache network interface information | 2011-10-31 | 1 | -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 tables | 2011-10-15 | 1 | -12/+8 | |
| | | | | | The functions to get the pointers can now depend on the TLS variable be initialized. | ||||
* | Optimize use of isnan, isinf, finite | 2011-10-08 | 1 | -0/+4 | |
| | |||||
* | Don't call ifunc functions in trace mode | 2011-10-05 | 1 | -0/+1 | |
| | |||||
* | Remove support for !USE___THREAD | 2011-09-10 | 4 | -49/+17 | |
| | |||||
* | Cleanup of configuration options | 2011-09-10 | 2 | -27/+8 | |
| | | | | Make several tool features mandatory and simplify the code. | ||||
* | Add range checking for FD_SET, FD_CLR, and FD_ISSET | 2011-09-08 | 1 | -0/+1 | |
| | |||||
* | Clean up PLT use for scandirat | 2011-08-11 | 1 | -5/+2 | |
| | |||||
* | Implement scandirat function | 2011-08-09 | 1 | -0/+14 | |
| | |||||
* | 2.14 releaseglibc-2.14 | 2011-05-31 | 1 | -1/+1 | |
| | |||||
* | Don't unconditionally use alloca in gaih_inet | 2011-05-20 | 1 | -5/+14 | |
| | |||||
* | Fix a few problems in fopen and freopen | 2011-05-15 | 1 | -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_msg | 2011-05-15 | 2 | -4/+15 | |
| | |||||
* | Make complete getcwd work in rtld | 2011-05-08 | 1 | -0/+4 | |
| | |||||
* | Fix Linux getcwd for long paths | 2011-05-08 | 2 | -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. | 2011-05-08 | 1 | -1/+2 | |
| | | | | Don't call fcntl(F_SETFD) unnecessarily. | ||||
* | Obsolete RPC implementation in libc. | 2011-04-16 | 14 | -143/+139 | |
| | |||||
* | Update comment about feature macros. | 2011-04-02 | 1 | -0/+1 | |
| | |||||
* | Fix copy relocations handling of unique objects. | 2011-03-10 | 1 | -1/+0 | |
| | |||||
* | Fix memory leak in dlopen with RTLD_NOLOAD. | 2011-02-25 | 1 | -1/+4 | |
| | |||||
* | 2.13 releaseglibc-2.13 | 2011-01-17 | 1 | -2/+3 | |
| | |||||
* | Clean up PLT use for getrlimit64. | 2011-01-13 | 1 | -0/+1 | |
| | |||||
* | Fix PLT use due to __libc_alloca_cutoff. | 2011-01-13 | 1 | -0/+1 | |
| | |||||
* | Fix typo in comment. | 2010-12-09 | 1 | -1/+1 | |
| | |||||
* | Require suid bit on audit objects in privileged programs | 2010-10-24 | 1 | -0/+1 | |
| | |||||
* | Correct implementation of fmaf. | 2010-10-11 | 1 | -0/+2 | |
| | |||||
* | Remove duplicate version of pmap_getport from NIS code. | 2010-09-01 | 1 | -0/+5 | |
| | |||||
* | Prepare for release.glibc-2.12 | 2010-05-03 | 1 | -1/+1 | |
| | |||||
* | Fix handling of __need_mbstate_t and __need_wint_t. | 2010-03-27 | 1 | -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. | ||||
* | Fix Linux getlogin{_r,} implementation | 2010-03-24 | 1 | -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. | ||||
* | Fix handling of STB_GNU_UNIQUE in LD_TRACE_PRELINKING | 2010-03-24 | 1 | -1/+5 | |
| | |||||
* | Avoid PLT call to fegetenv on s390 | 2010-02-09 | 1 | -0/+1 | |
| | |||||
* | Fix _XOPEN_SOURCE_EXTENDED handling. | 2010-01-15 | 1 | -4/+2 | |
| |