about summary refs log tree commit diff
path: root/elf/dl-write.c
Commit message (Collapse)AuthorAgeFilesLines
* elf: Fix uninitialized variable for _dl_writeShuo Wang2020-11-241-1/+1
| | | | | Variable ret in elf/dl-write.c is uninitialized, which should get return value from __writev.
* elf: Implement _dl_writeFlorian Weimer2020-10-071-0/+56
The generic version is parallel to _dl_writev. It cannot use _dl_writev directly because the errno value needs to be obtained under a lock. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>