Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix building on x86 with older kernel headers. | Mike Frsyinger | 2009-11-14 | 2 | -0/+12 |
| | | | | Fix building on x86 when older linux headers lack __NR_fallocate define. | ||||
* | Add support for new Linux error ERFKILL. | Ulrich Drepper | 2009-11-14 | 4 | -2/+22 |
| | |||||
* | Fix F_SETOWN_EX and F_GETOWN_EX definitions. | Ulrich Drepper | 2009-11-14 | 7 | -20/+20 |
| | |||||
* | Fix spelling of (Newton-)Raphson | Philippe De Muyter | 2009-11-06 | 2 | -6/+6 |
| | |||||
* | Correct readahead syscall wrapper on powerpc32. | Andreas Schwab | 2009-11-06 | 1 | -0/+3 |
| | | | | | | Due to alignment of 64bit parameters there is a dummy second argument. But other than that the syscall arguments are directly mapped to the function arguments. | ||||
* | Fix R_PPC64_{JMP_IREL,IRELATIVE} handling in dl-conflict.c. | Jakub Jelinek | 2009-11-06 | 1 | -2/+4 |
| | | | | | | | | | I've just committed STT_GNU_IFUNC ppc/ppc64 support into prelink, and this patch is needed on the glibc side. Without it ld.so segfaults, as in dl-conflict.c sym_map is always NULL. While dl-machine.h could use RESOLVE_CONFLICT_FIND_MAP macro to compute it, it doesn't make sense, because with prelink we know it is already properly relocated (all relative relocations are applied by prelink). | ||||
* | Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64. | Jakub Jelinek | 2009-11-06 | 7 | -14/+14 |
| | | | | | | | | As reported in http://bugzilla.redhat.com/533063 , preadv/pwritev prototypes are wrong on 32-bit arches with -D_FILE_OFFSET_BITS=64 and as I've just found, fallocate is wrong too. The problem is that only off_t is remapped to the 64-bit type transparently, __off_t is not. | ||||
* | Make name of libgcc_s library configurable | Andreas Schwab | 2009-11-03 | 2 | -1/+4 |
| | |||||
* | Fix typo in readlinkat | Andreas Schwab | 2009-10-30 | 1 | -1/+1 |
| | |||||
* | Uglify IFUNC tests for PPC. | Alan Modra | 2009-10-30 | 2 | -0/+72 |
| | |||||
* | Implement IFUNC for PPC. | Alan Modra | 2009-10-30 | 5 | -4/+152 |
| | |||||
* | Add a few defines to <netinet/udp.h>. | Ulrich Drepper | 2009-10-30 | 1 | -1/+11 |
| | |||||
* | Implement mkstemps and mkstemps64. | Ulrich Drepper | 2009-10-30 | 1 | -7/+7 |
| | |||||
* | Fix IA-64 and S390 sigevent definitions. | Ulrich Drepper | 2009-10-29 | 2 | -4/+12 |
| | |||||
* | Fix compat handling in *at functions. | Ulrich Drepper | 2009-10-29 | 18 | -18/+132 |
| | | | | | When passed an empty string for the filename, the compat code using /proc in all *at functions did the wrong thing. | ||||
* | Fix AIO when thread creation failed. | Ulrich Drepper | 2009-10-29 | 1 | -7/+19 |
| | | | | | Several bugs fixed when we needed to create a thread to work on AIO requests but failed and there is not one running. | ||||
* | Fix errno handling in posix_openpt. | Andreas Schwab | 2009-10-29 | 1 | -2/+5 |
| | | | | | | The implementation of posix_openpt on Linux can fail in a few extra ways if the appropriate pseudo filesystems are not mounted etc. In some of these cases we have to explicitly set errno. | ||||
* | Fix getttyname on Linux when called for different devices. | Ulrich Drepper | 2009-10-29 | 1 | -1/+6 |
| | | | | | | If a second call to ttyname is not for the same type of device (e.g., serial vs ptty) the prefix of the buffer was wrong. Don't rely on the previous content, always reinitialize it. | ||||
* | Add macros for DSCP markings. | Philip Prindeville | 2009-10-29 | 1 | -1/+37 |
| | |||||
* | Fix F_GETOWN on some Linux archs. | Ulrich Drepper | 2009-10-29 | 3 | -5/+71 |
| | | | | | | The syscall conventions on some Linux archs prevented F_GETOWN from working correctly in some situations. This can be rectified when using the new F_GETOWN_EX command. | ||||
* | Define F_OWNER_* and f_owner_ex for Linux targets. | Ulrich Drepper | 2009-10-29 | 7 | -7/+126 |
| | |||||
* | Allow compat handling of getutmp. | Ulrich Drepper | 2009-10-29 | 1 | -4/+6 |
| | |||||
* | Readd definition of __expl in ldbl-128 | Joseph S. Myers | 2009-10-28 | 1 | -0/+1 |
| | |||||
* | Fix whitespaces. | Ulrich Drepper | 2009-10-22 | 2 | -11/+11 |
| | |||||
* | Implement SSE4.2 optimized strchr and strrchr. | H.J. Lu | 2009-10-22 | 4 | -1/+506 |
| | |||||
* | Correct errno handling in expm1. | Andreas Schwab | 2009-10-19 | 6 | -1/+17 |
| | |||||
* | Add ____longjmp_chk for sparc | David S. Miller | 2009-10-14 | 2 | -0/+184 |
| | | | | | | | | | | | tst-longjmp_chk passes, tst-longjmp_chk2 fails but that is because of some limitations of kernel signal delivery on sparc that I need to fix, it has nothing to do with the longjmp_chk implementation. (The problem with tst-longjmp_chk2 is that it tries to do a stack fault SIGSEGV within a stack fault SIGSEGV , and the Linux kernel will refuse to setup the signal stack and deliver the signal if the register windows can't be written out to the stack first) | ||||
* | Clean up unnecessary libc_hidden_builtin_def fiddling in x86 multiarch ↵ | Roland McGrath | 2009-10-06 | 2 | -5/+4 |
| | | | | definitions. | ||||
* | Clean up x86 multiarch HAS_FOO macros. | Roland McGrath | 2009-10-06 | 2 | -23/+10 |
| | |||||
* | Define F_SETOWN_EX and F_GETOWN_EX in Linux headers. | Ulrich Drepper | 2009-10-01 | 7 | -14/+28 |
| | |||||
* | Fix Hurd mkdirat. | Samuel Thibault | 2009-09-28 | 1 | -1/+2 |
| | |||||
* | configure tweaks, support $libc_add_on_config_subdirs | Roland McGrath | 2009-09-15 | 20 | -727/+763 |
| | |||||
* | Fix __longjmp_chk on s390/s390x. | Jakub Jelinek | 2009-09-08 | 2 | -2/+30 |
| | | | | s390/s390x hasn't been updated to handle alternate stacks properly. | ||||
* | Fix IA-32 strstr in multiarch configuration as well. | Ulrich Drepper | 2009-09-03 | 1 | -1/+2 |
| | |||||
* | Fix strstr/strcasestr/fma/fmaf on x86_64. | Jakub Jelinek | 2009-09-02 | 4 | -6/+8 |
| | |||||
* | Fix use of 64-bit insn in 32-bit memcpy for POWER6. | Joshua W. Boyer | 2009-09-01 | 1 | -1/+1 |
| | |||||
* | Fix x86_64 bits/mathinline.h for -m32 compilation. | Jakub Jelinek | 2009-09-01 | 1 | -0/+12 |
| | |||||
* | Fix parse error in bits/mathinline.h with --std=c99 | Andreas Schwab | 2009-08-31 | 1 | -2/+2 |
| | |||||
* | Remove ENABLE_SSSE3_ON_ATOM. | H.J. Lu | 2009-08-28 | 2 | -11/+1 |
| | | | | | It turns that SSSE3 isn't slow on Atom. The problem is bsf. This patch removes ENABLE_SSSE3_ON_ATOM. | ||||
* | Add isinf optimized for 64-bit. | Ulrich Drepper | 2009-08-26 | 1 | -0/+30 |
| | |||||
* | Optimized isnan for 64-bit machines. | Ulrich Drepper | 2009-08-26 | 1 | -0/+39 |
| | |||||
* | Make llround an alias for lround on 64-bit machines. | Ulrich Drepper | 2009-08-25 | 2 | -0/+14 |
| | |||||
* | Optimized nearbyint for 64-bit. | Ulrich Drepper | 2009-08-25 | 1 | -0/+86 |
| | |||||
* | Optimized rint implementation for x86-64. | Ulrich Drepper | 2009-08-25 | 1 | -0/+79 |
| | |||||
* | Add 64-bit optimized s_round. | Ulrich Drepper | 2009-08-25 | 1 | -0/+77 |
| | |||||
* | Optimize out duplicated scalbln code for x86-64. | Ulrich Drepper | 2009-08-25 | 3 | -6/+17 |
| | |||||
* | Add 64-bit optimized scalbln. | Ulrich Drepper | 2009-08-25 | 1 | -0/+68 |
| | |||||
* | Optimized signbit{,f} for x86-64. | Ulrich Drepper | 2009-08-25 | 2 | -0/+54 |
| | |||||
* | Add 64-bit optimized version lround. | Ulrich Drepper | 2009-08-25 | 1 | -0/+67 |
| | |||||
* | 64-bit optimized implementation of trunc. | Ulrich Drepper | 2009-08-25 | 1 | -0/+56 |
| |