sapling/eden/fs/fuse/PollHandle.h
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

40 lines
893 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <memory>
#include "eden/fs/fuse/FuseTypes.h"
namespace facebook {
namespace eden {
// Some compatibility cruft for working with OSX Fuse
#if FUSE_MINOR_VERSION < 8
using fuse_pollhandle = void*;
#endif
class PollHandle {
struct Deleter {
void operator()(fuse_pollhandle*);
};
std::unique_ptr<fuse_pollhandle, Deleter> h_;
public:
PollHandle(const PollHandle&) = delete;
PollHandle& operator=(const PollHandle&) = delete;
PollHandle(PollHandle&&) = default;
PollHandle& operator=(PollHandle&&) = default;
explicit PollHandle(fuse_pollhandle* h);
// Requests that the kernel poll the associated file
void notify();
};
} // namespace eden
} // namespace facebook