diff options
author | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2021-04-15 18:37:32 +0200 |
---|---|---|
committer | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2021-04-15 18:37:32 +0200 |
commit | 3dad2125b9048fdc3790d3e7c4770f7174be889c (patch) | |
tree | 25a723baf00892f61d103029a983fec6b60bf550 /util.h | |
parent | 68622a02adfa7ebd3a195667d3fbf8e1f10ca93f (diff) | |
download | bfs-3dad2125b9048fdc3790d3e7c4770f7174be889c.tar.xz |
util: add safe_read_all() and safe_write_all() functions.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -231,8 +231,18 @@ int bfs_minor(dev_t dev); ssize_t safe_read(int fd, void *buf, size_t nbytes); /** + * A safe version of read() that handles interrupted system calls and partial reads. + */ +ssize_t safe_read_all(int fd, void *buf, size_t nbytes); + +/** * A safe version of write() that handles interrupted system calls. */ ssize_t safe_write(int fd, const void *buf, size_t nbytes); +/** + * A safe version of write() that handles interrupted system calls and partial writes. + */ +ssize_t safe_write_all(int fd, const void *buf, size_t nbytes); + #endif // BFS_UTIL_H |