| 57 | } |
| 58 | |
| 59 | int |
| 60 | open_path(const swoc::file::path &path, int oflags = O_CREAT | O_RDWR, int mode = 0644) |
| 61 | { |
| 62 | return open(path.c_str(), oflags, mode); |
| 63 | } |
| 64 | |
| 65 | template <typename F> class FunctionHolderHandler : public IOUringCompletionHandler |
| 66 | { |