aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/device_id.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-06-19 11:55:32 -0700
committerMartin Braun <martin.braun@ettus.com>2019-11-26 11:49:25 -0800
commitb92a8e2f2b548eef7cb5d58edc92d26befcf67d7 (patch)
tree5b61c013520f76789c70ed8c0e44180674c8f80d /host/lib/rfnoc/device_id.cpp
parent67ea15ad4b57c36f8b0dc80a87cf0ac16b585d34 (diff)
downloaduhd-b92a8e2f2b548eef7cb5d58edc92d26befcf67d7.tar.gz
uhd-b92a8e2f2b548eef7cb5d58edc92d26befcf67d7.tar.bz2
uhd-b92a8e2f2b548eef7cb5d58edc92d26befcf67d7.zip
rfnoc: Add device_id allocator
This is a single atomic allocator in the global uhd::rfnoc namespace, so that devices can allocate themselves device IDs without having to confer with the rest of the RFNoC infrastructure.
Diffstat (limited to 'host/lib/rfnoc/device_id.cpp')
-rw-r--r--host/lib/rfnoc/device_id.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/host/lib/rfnoc/device_id.cpp b/host/lib/rfnoc/device_id.cpp
new file mode 100644
index 000000000..6bd287dce
--- /dev/null
+++ b/host/lib/rfnoc/device_id.cpp
@@ -0,0 +1,17 @@
+//
+// Copyright 2019 Ettus Research, a National Instruments Brand
+//
+// SPDX-License-Identifier: GPL-3.0-or-later
+//
+
+#include <uhdlib/rfnoc/device_id.hpp>
+#include <atomic>
+
+using namespace uhd::rfnoc;
+
+device_id_t uhd::rfnoc::allocate_device_id()
+{
+ static std::atomic<device_id_t> counter{1};
+ return counter++;
+}
+