summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-04-15 14:00:11 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-04-15 14:00:11 -0400
commitb7111f2f01dce9516aea5250e765124300f2fa3a (patch)
tree25a723baf00892f61d103029a983fec6b60bf550 /util.h
parent1d8bbdc1a59fd5246ec60bc3db1ece055ef83639 (diff)
parent3dad2125b9048fdc3790d3e7c4770f7174be889c (diff)
downloadbfs-b7111f2f01dce9516aea5250e765124300f2fa3a.tar.xz
Merge pull request #73 from markus-oberhumer/safe-read-write
Diffstat (limited to 'util.h')
-rw-r--r--util.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/util.h b/util.h
index ca90494..7293d50 100644
--- a/util.h
+++ b/util.h
@@ -225,4 +225,24 @@ 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 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