uhd/host/lib/transport/adapter.cpp
Martin Braun 876d4150aa uhd: Apply clang-format against all .cpp and .hpp files in host/
Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of
files that clang-format gets applied against.
2020-03-03 08:51:32 -06:00

23 lines
567 B
C++

//
// Copyright 2019 Ettus Research, a National Instruments Brand
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhd/exception.hpp>
#include <uhdlib/transport/adapter.hpp>
using namespace uhd::transport;
adapter_id_t adapter_ctx::register_adapter(adapter_info& info)
{
std::lock_guard<std::mutex> lock(_mutex);
auto key = info.to_string();
if (_id_map.count(key) > 0) {
return _id_map.at(key);
} else {
adapter_id_t id = _id_map.size() + 1;
_id_map.emplace(std::make_pair(key, id));
return id;
}
}