summaryrefslogtreecommitdiff
path: root/ioops.h
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-06-04 10:23:49 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-06-04 10:23:49 +0200
commit829456efb34ab796f7aa743fa7f37a5ecd8b3455 (patch)
treed7b8ad70c4f2615ce6ef912abd75af4a45b715de /ioops.h
parent78a23a4d5ab27c8af26c0e232c099a0c16907649 (diff)
xio: rename xio to ioops and reduce its includes
Rename xio to ioops (io-ops) and boil its include files down to a minimum. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'ioops.h')
-rw-r--r--ioops.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ioops.h b/ioops.h
new file mode 100644
index 0000000..eed3e3d
--- /dev/null
+++ b/ioops.h
@@ -0,0 +1,12 @@
+#ifndef IOOPS_H
+#define IOOPS_H
+
+extern int open_or_die(const char *file, int flags);
+extern int open_or_die_m(const char *file, int flags, mode_t mode);
+extern void create_or_die(const char *file, mode_t mode);
+extern int tun_open_or_die(char *name, int type);
+extern void pipe_or_die(int pipefd[2], int flags);
+extern ssize_t read_or_die(int fd, void *buf, size_t count);
+extern ssize_t write_or_die(int fd, const void *buf, size_t count);
+
+#endif /* IOOPS_H */