summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorMarkus F.X.J. Oberhumer <markus@oberhumer.com>2021-04-15 07:43:13 +0200
committerMarkus F.X.J. Oberhumer <markus@oberhumer.com>2021-04-15 07:43:13 +0200
commit68622a02adfa7ebd3a195667d3fbf8e1f10ca93f (patch)
tree8dd77202cd9cdbf5f59ae42dd3293d87fbabcfbb /util.h
parent1d8bbdc1a59fd5246ec60bc3db1ece055ef83639 (diff)
downloadbfs-68622a02adfa7ebd3a195667d3fbf8e1f10ca93f.tar.xz
util: introduce safe versions of read & write that handle interrupted
systems calls.
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 ca90494..ef67566 100644
--- a/util.h
+++ b/util.h
@@ -225,4 +225,14 @@ int bfs_major(dev_t dev);
*/
int bfs_minor(dev_t dev);
+/**
+ * A safe version of read() that handles interrupted system calls.
+ */
+ssize_t safe_read(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);
+
#endif // BFS_UTIL_H