From 05cafc5002360015a79484e6ee40c159b1c80958 Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Sun, 21 Feb 2016 19:22:01 -0500 Subject: Replace creat with mknod+open Performance is not an immediate concern, so replace creat with mknod to compact code. --- src/posix_extras.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/posix_extras.h') diff --git a/src/posix_extras.h b/src/posix_extras.h index 9bcbe51..60b2284 100644 --- a/src/posix_extras.h +++ b/src/posix_extras.h @@ -66,6 +66,10 @@ class File { // indeed be relative (i.e., it must not start with '/'). struct stat LinkStatAt(const char* path) const; + // Creates a file or directory at the path relative to the file descriptor. + // The path must indeed be relative (i.e., it must not start with '/'). + void MkNod(const char* path, mode_t mode, dev_t dev) const; + // Calls openat(2) on the path relative to the file descriptor. The path must // indeed be relative (i.e., it must not start with '/'). File OpenAt(const char* const path, const int flags) const { -- cgit v1.2.3