Split: Expose name via CompThr's derivatives' ctors

This completes the functional work of splitting libspinscale off
from SMO. Spinscale shouldn't have any real dependencies on SMO
from here on out.
This commit is contained in:
2026-02-22 18:54:56 -04:00
parent 1c397dfeb5
commit aec3cbedf2
7 changed files with 21 additions and 16 deletions
+5 -2
View File
@@ -11,10 +11,13 @@ class MindThread
{
public:
MindThread(
sscl::ThreadId _id, sscl::PuppetThread::entryPointFn entryPoint,
sscl::ThreadId _id, std::string name,
sscl::PuppetThread::entryPointFn entryPoint,
sscl::PuppetComponent &component,
sscl::PuppetThread::preJoltHookFn preJoltFn = nullptr)
: sscl::PuppetThread(_id, std::move(entryPoint), component, preJoltFn)
: sscl::PuppetThread(
_id, std::move(name), std::move(entryPoint),
component, preJoltFn)
{}
};