Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Optimize access to isXYZ and toXYZ tables | Ulrich Drepper | 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 | Ulrich Drepper | 2011-10-08 | 1 | -0/+4 |
| | |||||
* | Don't call ifunc functions in trace mode | Andreas Schwab | 2011-10-05 | 1 | -0/+1 |
| | |||||
* | Remove support for !USE___THREAD | Ulrich Drepper | 2011-09-10 | 4 | -49/+17 |
| | |||||
* | Cleanup of configuration options | Ulrich Drepper | 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 | Ulrich Drepper | 2011-09-08 | 1 | -0/+1 |
| | |||||
* | Clean up PLT use for scandirat | Andreas Schwab | 2011-08-11 | 1 | -5/+2 |
| | |||||
* | Implement scandirat function | Ulrich Drepper | 2011-08-09 | 1 | -0/+14 |
| | |||||
* | 2.14 release glibc-2.14 | Ulrich Drepper | 2011-05-31 | 1 | -1/+1 |
| | |||||
* | Don't unconditionally use alloca in gaih_inet | Ulrich Drepper | 2011-05-20 | 1 | -5/+14 |
| | |||||
* | Fix a few problems in fopen and freopen | Ulrich Drepper | 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 | Ulrich Drepper | 2011-05-15 | 2 | -4/+15 |
| | |||||
* | Make complete getcwd work in rtld | Ulrich Drepper | 2011-05-08 | 1 | -0/+4 |
| | |||||
* | Fix Linux getcwd for long paths | Ulrich Drepper | 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. | Ulrich Drepper | 2011-05-08 | 1 | -1/+2 |
| | | | | Don't call fcntl(F_SETFD) unnecessarily. | ||||
* | Obsolete RPC implementation in libc. | Ulrich Drepper | 2011-04-16 | 14 | -143/+139 |
| | |||||
* | Update comment about feature macros. | Ulrich Drepper | 2011-04-02 | 1 | -0/+1 |
| | |||||
* | Fix copy relocations handling of unique objects. | Ulrich Drepper | 2011-03-10 | 1 | -1/+0 |
| | |||||
* | Fix memory leak in dlopen with RTLD_NOLOAD. | Andreas Schwab | 2011-02-25 | 1 | -1/+4 |
| | |||||
* | 2.13 release glibc-2.13 | Ulrich Drepper | 2011-01-17 | 1 | -2/+3 |
| | |||||
* | Clean up PLT use for getrlimit64. | Ulrich Drepper | 2011-01-13 | 1 | -0/+1 |
| | |||||
* | Fix PLT use due to __libc_alloca_cutoff. | Ulrich Drepper | 2011-01-13 | 1 | -0/+1 |
| | |||||
* | Fix typo in comment. | Ulrich Drepper | 2010-12-09 | 1 | -1/+1 |
| | |||||
* | Require suid bit on audit objects in privileged programs | Andreas Schwab | 2010-10-24 | 1 | -0/+1 |
| | |||||
* | Correct implementation of fmaf. | Jakub Jelinek | 2010-10-11 | 1 | -0/+2 |
| | |||||
* | Remove duplicate version of pmap_getport from NIS code. | Ulrich Drepper | 2010-09-01 | 1 | -0/+5 |
| | |||||
* | Prepare for release. glibc-2.12 | Ulrich Drepper | 2010-05-03 | 1 | -1/+1 |
| | |||||
* | Fix handling of __need_mbstate_t and __need_wint_t. | Ulrich Drepper | 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 | Ulrich Drepper | 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 | Ulrich Drepper | 2010-03-24 | 1 | -1/+5 |
| | |||||
* | Avoid PLT call to fegetenv on s390 | Andreas Schwab | 2010-02-09 | 1 | -0/+1 |
| | |||||
* | Fix _XOPEN_SOURCE_EXTENDED handling. | Ulrich Drepper | 2010-01-15 | 1 | -4/+2 |
| | |||||
* | Fix up wchar.h for XPG7. | Ulrich Drepper | 2010-01-11 | 1 | -0/+6 |
| | |||||
* | Add support for XPG7 testing. | Ulrich Drepper | 2010-01-09 | 1 | -2/+7 |
| | | | | | The header conformance testing code needed extending for XPG7. This exposed a few bugs in the headers. There are more changes to come. | ||||
* | Fix isomac test after recent header change. | Ulrich Drepper | 2009-12-23 | 1 | -1/+5 |
| | |||||
* | Avoid ELF lookup race. | Ulrich Drepper | 2009-12-15 | 1 | -3/+5 |
| | | | | | | On some architectures the update of the l_used field in the lookup functions races with setting the other bits in the bitfield. Simply avoid this and optimize use of l_used in general. | ||||
* | Optimize grantpt. | Ulrich Drepper | 2009-11-24 | 1 | -0/+3 |
| | | | | | | grantpt was performing two consecutive calls to stat with the same file name. Avoid this by creating a special version of the ptsname function which allows to pass the stat result back to the caller. | ||||
* | 2.11 release. glibc-2.11 | Ulrich Drepper | 2009-10-30 | 1 | -1/+1 |
| | |||||
* | Implement mkstemps and mkstemps64. | Ulrich Drepper | 2009-10-30 | 1 | -1/+2 |
| | |||||
* | Correct errno handling in expm1. | Andreas Schwab | 2009-10-19 | 1 | -0/+3 |
| | |||||
* | Add hidden alias for fflush. | Andreas Schwab | 2009-09-01 | 1 | -0/+1 |
| | |||||
* | Prepare use if IFUNC functions outside libc.so. | Ulrich Drepper | 2009-07-29 | 1 | -1/+12 |
| | | | | | | We use a callback function into libc.so to get access to the data structure with the information and have special versions of the test macros which automatically use this function. | ||||
* | Make include/unistd.h suitable for C++ test cases. | Duncan Simpson | 2009-07-23 | 1 | -0/+4 |
| | |||||
* | Use rel semantics of cas instead of acq semantics with full barrier before ↵ | Jakub Jelinek | 2009-07-16 | 1 | -11/+21 |
| | | | | | | | | | | | it in _int_free The following patch fixes catomic_compare_and_exchange_*_rel definitions (which were never used and weren't correct) and uses catomic_compare_and_exchange_val_rel in _int_free. Comparing to the pre-2009-07-02 --enable-experimental-malloc state the generated code should be identical on all arches other than ppc/ppc64 and on ppc/ppc64 should use lwsync instead of isync barrier. | ||||
* | Clean up code for hash table handling in ld.so. | Ulrich Drepper | 2009-07-07 | 1 | -69/+3 |
| | |||||
* | Preserve message printed before abort. | Ulrich Drepper | 2009-06-15 | 1 | -0/+3 |
| | | | | | | | The terminal output etc is not visible in a core file. The new libc-internal variable __abort_msg will point to a string with the message which has been printed before the abort in case abort is called from inside libc. BZ #10217 | ||||
* | Add missing __execvpe prototype. | Ulrich Drepper | 2009-06-02 | 1 | -0/+2 |
| | | | | Avoids warnings. | ||||
* | Finish IFUNC support for x86 and x86-64. | Ulrich Drepper | 2009-05-31 | 1 | -0/+17 |
| | | | | Add support for the IRELAIVE relocation and IFUNC in static executables. | ||||
* | Avoid double definition of catomic_compare_and_exchange_val_acq. | Jakub Jelinek | 2009-05-15 | 1 | -9/+10 |
| | |||||
* | Check for valid stack frame in longjmp. | Ulrich Drepper | 2009-05-15 | 2 | -1/+3 |
| | | | | | | | If longjmp restores the stack frame to an address which is beyond the stack frame at the time of the longjmp call it would install an uninitialized stack frame. If compiled with _FORTIFY_SOURCE defined, longjmp will now bail out in this situation. |