aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/pread64_nocancel.c
AgeCommit message (Collapse)Author
2020-03-03Linux: Clean up pread64/pwrite64 system call namesFlorian Weimer
Linux removed the last definitions of __NR_pread and __NR_pwrite in commit 4ba66a9760722ccbb691b8f7116cad2f791cca7b, the removal of the blackfin port. All architectures now define __NR_pread64 and __NR_pwrite64 only. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
2020-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers
2019-10-18Add nocancel version of pread64()Leandro Pereira
This is in preparation for changes in the dynamic linker so that pread() is used instead of lseek()+read(). Reviewed-by: Carlos O'Donell <carlos@redhat.com>