sapling/eden/fs/fuse/PollHandle.h
Chad Austin 8b9261f2a1 run clang-format across all C++ files
Summary:
Per discussion with bolinfest, this brings Eden in line with clang-format.

This diff was generated with `find . \( -iname '*.cpp' -o -iname '*.h' \) -exec bash -c "yes | arc lint {}" \;`

Reviewed By: bolinfest

Differential Revision: D6232695

fbshipit-source-id: d54942bf1c69b5b0dcd4df629f1f2d5538c9e28c
2017-11-03 16:02:03 -07:00

43 lines
1.0 KiB
C++

/*
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#pragma once
#include <memory>
#include "fuse_headers.h"
namespace facebook {
namespace eden {
namespace fusell {
// Some compatibility cruft for working with OSX Fuse
#if FUSE_MINOR_VERSION < 8
typedef void* fuse_pollhandle;
#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 fusell
} // namespace eden
} // namespace facebook