summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorMarkus F.X.J. Oberhumer <markus@oberhumer.com>2021-04-15 18:37:32 +0200
committerMarkus F.X.J. Oberhumer <markus@oberhumer.com>2021-04-15 18:37:32 +0200
commit3dad2125b9048fdc3790d3e7c4770f7174be889c (patch)
tree25a723baf00892f61d103029a983fec6b60bf550 /util.h
parent68622a02adfa7ebd3a195667d3fbf8e1f10ca93f (diff)
downloadbfs-3dad2125b9048fdc3790d3e7c4770f7174be889c.tar.xz
util: add safe_read_all() and safe_write_all() functions.
Diffstat (limited to 'util.h')
-rw-r--r--util.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/util.h b/util.h
index ef67566..7293d50 100644
--- a/util.h
+++ b/util.h
@@ -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