sapling/eden/fs/fuse/PollHandle.cpp

29 lines
614 B
C++
Raw Normal View History

/*
* 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.
*/
#include "eden/fs/fuse/PollHandle.h"
namespace facebook {
namespace eden {
void PollHandle::Deleter::operator()(fuse_pollhandle* /*h*/) {
#if FUSE_MAJOR_VERSION >= 8
fuse_pollhandle_destroy(h);
#endif
}
PollHandle::PollHandle(fuse_pollhandle* h) : h_(h, PollHandle::Deleter()) {}
void PollHandle::notify() {
#if FUSE_MAJOR_VERSION >= 8
fuse_lowlevel_notify_poll(h_.get());
#endif
}
} // namespace eden
} // namespace facebook