sapling/eden/fs/takeover/TakeoverClient.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

30 lines
792 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 "eden/fs/takeover/TakeoverData.h"
#include "eden/fs/utils/PathFuncs.h"
namespace facebook {
namespace eden {
/**
* Request to take over mount points from an existing edenfs process.
*
* Returns a TakeoverData object on success, or throws an exception on error.
*/
TakeoverData takeoverMounts(
AbsolutePathPiece socketPath,
// this parameter is present for testing purposes and should not normally
// be used in the production build.
const std::set<int32_t>& supportedTakeoverVersions =
kSupportedTakeoverVersions);
} // namespace eden
} // namespace facebook