Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-24 | Optimized st{r,p}{,n}cpy for SSE2/SSSE3 on x86-32 | H.J. Lu | |
2011-06-22 | Avoid __check_pf calls in getaddrinfo unless really needed | Ulrich Drepper | |
2011-06-22 | Fix Ipv4&IPv6 lookup in getaddrinfo | Andreas Schwab | |
Problem introduced in the last patch. | |||
2011-06-22 | Use a /sys/devices/system/cpu/online for _SC_NPROCESSORS_ONLN implementation | Ulrich Drepper | |
2011-06-22 | Rate limit expensive _SC_NPROCESSORS_ONLN computation | Ulrich Drepper | |
2011-06-22 | Clean up after kernel sigcontext header mess | Ulrich Drepper | |
2011-06-21 | Fix IPv6-only lookups through getaddrinfo | Ulrich Drepper | |
A recent patch introduced a problem where IPv6 lookups happily returned IPv4 addresses. | |||
2011-06-21 | Minor optimization of getaddrinfo after recent patch | Ulrich Drepper | |
2011-06-20 | Add an elf_ifunc_invoke interface so that architectures can implement | David S. Miller | |
the ifunc resolver calls however they wish. | |||
2011-06-15 | Improve 64-bit build | Andreas Schwab | |
An imperfect version of fxstatat64 was used in ld.so. | |||
2011-06-14 | Quash two memset undeclared warnings. | Andreas Jaeger | |
2011-06-13 | Fix memory leak in getaddrinfo | Ulrich Drepper | |
2011-06-07 | sparc: Fix LD_BIND_NOW with multiarch. | David S. Miller | |
2011-06-03 | Merge branch 'master' of ssh://sourceware.org/git/glibc | Ulrich Drepper | |
Conflicts: ChangeLog | |||
2011-06-03 | Assume Intel Core i3/i5/i7 processor if AVX is available | H.J. Lu | |
2011-05-31 | Fix typo in stack guard setup code for old kernels | Ulrich Drepper | |
2011-05-29 | Restore _res correctly | Ulrich Drepper | |
getaddrinfo works around the resolver functionality to avoid automatic IPv6 lookups. The restoring didn't allow for the resolver to set additional bits in _res. | |||
2011-05-29 | Same change for the other siginfi.h files | Ulrich Drepper | |
2011-05-29 | Don't document si_code used for raise() | Ulrich Drepper | |
2011-05-28 | Fix build for platforms with socketcall syscall | Ulrich Drepper | |
2011-05-28 | Add support for time syscall in vDSO | Ulrich Drepper | |
2011-05-28 | Add sendmmsg syscall | Ulrich Drepper | |
2011-05-28 | Set setns system call | Ulrich Drepper | |
2011-05-27 | Use getcpu definition from vDSO on x86-64 | Ulrich Drepper | |
2011-05-25 | Undo accidental change in x86-64 user.h | Jakub Jelinek | |
2011-05-23 | Define RLIMIT_RTTIME | Ulrich Drepper | |
2011-05-23 | Fix sysconf compilation for !HP_TIMING_AVAIL archs | Andreas Schwab | |
2011-05-21 | Define CLOCK_REALTIME_ALARM and CLOCK_BOOTTIME_ALARM | Ulrich Drepper | |
2011-05-20 | Don't unconditionally use alloca in gaih_inet | Ulrich Drepper | |
2011-05-20 | Prevent Altivec and VSX insns on PowerPC64 when no FPRs or VRs are avail. | Ryan S. Arnold | |
(cherry picked from commit 4749a0058b27274a95c5a798e339c7299cdf890e) Conflicts: ChangeLog | |||
2011-05-18 | Fix typo in x86-64 powl | H.J. Lu | |
2011-05-16 | Cleanup x86-64 sys/user.h | Ulrich Drepper | |
2011-05-15 | Fix a few problems in fopen and freopen | Ulrich 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-15 | sysconf on Linux/ia64 reported outdate versions for some options | Ulrich Drepper | |
The code is also cleaned up to avoid inefficiencies. | |||
2011-05-15 | Make stack canary value harder to read through read overflow | Ulrich Drepper | |
2011-05-15 | Use non-cancelable interfaces in setup code | Ulrich Drepper | |
2011-05-15 | Use mmap for allocation of buffers used for __abort_msg | Ulrich Drepper | |
2011-05-14 | Fix initialization of optimization values for AIO | Ulrich Drepper | |
2011-05-14 | Fix typo in comment | Ulrich Drepper | |
2011-05-14 | Fix potential problem with out-of-scope buffer | Ulrich Drepper | |
2011-05-14 | Handle recursive calls in backtrace better | Ulrich Drepper | |
2011-05-11 | Fix sched_setscheduler call in spawn implementation | Ulrich Drepper | |
2011-05-08 | Make complete getcwd work in rtld | Ulrich Drepper | |
2011-05-08 | Fix Linux getcwd for long paths | Ulrich 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-08 | Optimize fdopendir a bit. | Ulrich Drepper | |
Don't call fcntl(F_SETFD) unnecessarily. | |||
2011-05-07 | Actually undefine ARG_MAX from <linux/limits.h> | Jonathan Nieder | |
2011-05-07 | Misplaced new line in last patch | Ulrich Drepper | |
2011-05-07 | Add missing {__BEGIN,__END}_DECLS to sys/sysmacros.h | Paul Pluzhnikov | |
2011-05-02 | Better use of open in pathconf. | Ulrich Drepper | |
2011-05-02 | getaddrinfo(AF_INET6) does not return scope_id info provided by NSS modules | Maciej Babinski | |