Libspinscale: begin splitting it off

This commit is contained in:
2025-12-26 01:18:39 -04:00
parent d5c2b61d4c
commit 45959f9d1c
67 changed files with 776 additions and 615 deletions
+6 -6
View File
@@ -6,10 +6,10 @@
#include <sstream>
#include <memory>
#include <opts.h>
#include <asynchronousContinuation.h>
#include <serializedAsynchronousContinuation.h>
#include <callback.h>
#include <callableTracer.h>
#include <spinscale/asynchronousContinuation.h>
#include <spinscale/serializedAsynchronousContinuation.h>
#include <spinscale/callback.h>
#include <spinscale/callableTracer.h>
#include <componentThread.h>
#include <deviceManager/deviceManager.h>
#include <deviceManager/deviceReattacher.h>
@@ -351,7 +351,7 @@ public:
[[maybe_unused]] std::shared_ptr<AttachStimBuffDeviceReq> context
)
{
if (caller->id != ComponentThread::MRNTT)
if (caller->id != SmoThreadId::MRNTT)
{
std::cerr << std::string(__func__)
<< ": executed on non-mrntt thread: "
@@ -421,7 +421,7 @@ public:
[[maybe_unused]] std::shared_ptr<AttachStimBuffDeviceReq> context
)
{
if (caller->id != ComponentThread::MRNTT)
if (caller->id != SmoThreadId::MRNTT)
{
std::cerr << std::string(__func__)
<< ": executed on non-mrntt thread: "
+1 -1
View File
@@ -2,7 +2,7 @@
#include <iostream>
#include <functional>
#include <componentThread.h>
#include <callback.h>
#include <spinscale/callback.h>
#include <deviceManager/deviceReattacher.h>
#include <deviceManager/deviceManager.h>