Program Listing for File Store.cpp¶
↰ Return to documentation for file (umap/store/Store.cpp)
//////////////////////////////////////////////////////////////////////////////
// Copyright 2017-2020 Lawrence Livermore National Security, LLC and other
// UMAP Project Developers. See the top-level LICENSE file for details.
//
// SPDX-License-Identifier: LGPL-2.1-only
//////////////////////////////////////////////////////////////////////////////
#include "umap/umap.h"
#include "umap/store/Store.hpp"
#include "umap/store/StoreFile.h"
namespace Umap {
Store* Store::make_store(void* _region_, size_t _rsize_, size_t _alignsize_, int _fd_)
{
return new StoreFile{_region_, _rsize_, _alignsize_, _fd_};
}
}