about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/pread64_nocancel.c
Commit message (Collapse)AuthorAgeFilesLines
* Linux: Clean up pread64/pwrite64 system call namesFlorian Weimer2020-03-031-4/+0
| | | | | | | | | 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>
* Update copyright dates with scripts/update-copyrights.Joseph Myers2020-01-011-1/+1
|
* Add nocancel version of pread64()Leandro Pereira2019-10-181-0/+32
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>