summaryrefslogtreecommitdiff
path: root/sysdeps
AgeCommit message (Collapse)Author
2010-03-18Merge remote branch 'origin/release/2.11/master' into fedora/2.11/masterAndreas Schwab
2010-03-18sparc64: Fix handling of R_SPARC_TLS_LE_* relocations.David S. Miller
2010-01-18Fix a few error cases in *name4_r lookup handling.Ulrich Drepper
(cherry picked from commit a682a1bf553b1efe4dbb03207fece5b719cec482)
2009-12-04Avoid local PLTs.Ulrich Drepper
(cherry picked from commit 0f622686af3ae5a8f03dae886b08c260b38bda16)
2009-12-04Prevent unintended file desriptor leak in grantpt.Ulrich Drepper
The pt_chown program is completely transparently called. It might not be able to live with the various file descriptors the program has open at the time of the call (e.g., under SELinux). Close all but the needed descriptor and connect stdin, stdout, and stderr with /dev/null. pt_chown shouldn't print anything when called to do real work. (cherry picked from commit 139ee080b6b428240bf49f3e6361f3ac729f891a)
2009-11-30Merge branch 'release/2.11/master' into fedora/2.11/masterAndreas Schwab
2009-11-25Re-install F_[GS]ETOWN_EX changesAndreas Schwab
2009-11-25Avoid local PLTs.Ulrich Drepper
(cherry picked from commit 0f622686af3ae5a8f03dae886b08c260b38bda16)
2009-11-25Prevent unintended file desriptor leak in grantpt.Andreas Schwab
The pt_chown program is completely transparently called. It might not be able to live with the various file descriptors the program has open at the time of the call (e.g., under SELinux). Close all but the needed descriptor and connect stdin, stdout, and stderr with /dev/null. pt_chown shouldn't print anything when called to do real work. (cherry picked from commit 139ee080b6b428240bf49f3e6361f3ac729f891a)
2009-11-20Properly recover from shorter read.H.J. Lu
(cherry picked from commit 66221417957963c1d2df8d79f43573e328df2275)
2009-11-19Fix sync_file_range on ppc/ppc64.Jakub Jelinek
I've noticed that sync_file_range is a stub on ppc/ppc64. The kernel on these arches provides sync_file_range2 syscall with swapped parameters. The following completely untested patch ought to fix this. (cherry picked from commit 8ad81b316bc158746aee18aa7d7df44d3eb61871)
2009-11-19Avoid warnings in CPU_* macros when using const bitsets.Ulrich Drepper
(cherry picked from commit 03ebadd9eaa4663f58bd3fa6fe8283f255925632)
2009-11-18Add missing Linux MADV_* definitions.Ulrich Drepper
(cherry picked from commit 2866eeb1b70c989591293d37ae292e71def16775)
2009-11-18Fix building on x86 with older kernel headers.Mike Frsyinger
Fix building on x86 when older linux headers lack __NR_fallocate define. (cherry picked from commit f9a7bd536e0b1693db32e1330bbd96108ca63c42)
2009-11-14Fix F_SETOWN_EX and F_GETOWN_EX definitions.Ulrich Drepper
(cherry picked from commit 8964681064db9f13ee4ec7f46c53f04d66a04b99)
2009-11-06Fix spelling of (Newton-)RaphsonPhilippe De Muyter
2009-11-06Correct readahead syscall wrapper on powerpc32.Andreas Schwab
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.
2009-11-06Fix R_PPC64_{JMP_IREL,IRELATIVE} handling in dl-conflict.c.Jakub Jelinek
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).
2009-11-06Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64.Jakub Jelinek
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.
2009-11-05Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64Jakub Jelinek
2009-11-05Fix R_PPC64_{JMP_IREL,IRELATIVE} handling in dl-conflict.cJakub Jelinek
2009-11-05Correct readahead syscall wrapper on powerpc32Andreas Schwab
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.
2009-11-03Make name of libgcc_s library configurableAndreas Schwab
2009-10-30Revert "Fix F_GETOWN on some Linux archs." and "Define F_OWNER_* and ↵Andreas Schwab
f_owner_ex for Linux targets." They depend on F_GETOWN_EX/F_SETOWN_EX.
2009-10-30Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-10-30Fix typo in readlinkatAndreas Schwab
2009-10-30Uglify IFUNC tests for PPC.Alan Modra
2009-10-30Implement IFUNC for PPC.Alan Modra
2009-10-30Add a few defines to <netinet/udp.h>.Ulrich Drepper
2009-10-30Implement mkstemps and mkstemps64.Ulrich Drepper
2009-10-29Fix IA-64 and S390 sigevent definitions.Ulrich Drepper
2009-10-29Fix compat handling in *at functions.Ulrich Drepper
When passed an empty string for the filename, the compat code using /proc in all *at functions did the wrong thing.
2009-10-29Fix AIO when thread creation failed.Ulrich Drepper
Several bugs fixed when we needed to create a thread to work on AIO requests but failed and there is not one running.
2009-10-29Fix errno handling in posix_openpt.Andreas Schwab
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.
2009-10-29Fix getttyname on Linux when called for different devices.Ulrich Drepper
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.
2009-10-29Add macros for DSCP markings.Philip Prindeville
2009-10-29Fix F_GETOWN on some Linux archs.Ulrich Drepper
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.
2009-10-29Define F_OWNER_* and f_owner_ex for Linux targets.Ulrich Drepper
2009-10-29Allow compat handling of getutmp.Ulrich Drepper
2009-10-28Readd definition of __expl in ldbl-128Joseph S. Myers
2009-10-22Fix whitespaces.Ulrich Drepper
2009-10-22Implement SSE4.2 optimized strchr and strrchr.H.J. Lu
2009-10-19Correct errno handling in expm1.Andreas Schwab
2009-10-19Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-10-14Add ____longjmp_chk for sparcDavid S. Miller
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)
2009-10-12Revert "Define F_SETOWN_EX and F_GETOWN_EX in Linux headers."Andreas Schwab
The values of F_SETOWN_EX and F_GETOWN_EX conflict with F_GETLK64 and F_SETLK64 and are not finalized yet.
2009-10-12Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-10-06Clean up unnecessary libc_hidden_builtin_def fiddling in x86 multiarch ↵Roland McGrath
definitions.
2009-10-06Clean up x86 multiarch HAS_FOO macros.Roland McGrath
2009-10-01Define F_SETOWN_EX and F_GETOWN_EX in Linux headers.Ulrich Drepper