sapling/eden/fs/fuse/PollHandle.h
Adam Simpkins aa5e6c7295 update license headers in C++ files
Summary:
Update the copyright & license headers in C++ files to reflect the
relicensing to GPLv2

Reviewed By: wez

Differential Revision: D15487078

fbshipit-source-id: 19f24c933a64ecad0d3a692d0f8d2a38b4194b1d
2019-06-19 17:02:45 -07:00

39 lines
892 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