diff options
Diffstat (limited to '')
-rw-r--r-- | src/fs/FileSystem.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fs/FileSystem.hxx b/src/fs/FileSystem.hxx index 4df415e0a..aab5f3bfb 100644 --- a/src/fs/FileSystem.hxx +++ b/src/fs/FileSystem.hxx @@ -116,6 +116,12 @@ static inline bool RemoveFile(const Path &file) */ Path ReadLink(const Path &path); +static inline bool +MakeFifo(const Path &path, mode_t mode) +{ + return mkfifo(path.c_str(), mode) == 0; +} + /** * Wrapper for access() that uses #Path names. */ |