Files
salmanoff/smocore/mindComponent.cpp
T

30 lines
572 B
C++
Raw Normal View History

2026-02-22 17:46:27 -04:00
#include <iostream>
#include <mindComponent.h>
#include <marionette/marionette.h>
namespace smo {
void MindComponent::preJoltHook(sscl::PuppetThread &thr)
{
pthread_setname_np(pthread_self(), thr.name.c_str());
}
void MindComponent::handleLoopExceptionHook()
{
mrntt::mrntt.exceptionInd();
}
void MindComponent::preLoopHook()
{
std::cout << thread->name << ":defaultPuppetMain"
<< ": Entering event loop" << "\n";
}
void MindComponent::postLoopHook()
{
std::cout << thread->name << ":defaultPuppetMain"
<< ": Exited event loop" << "\n";
}
} // namespace smo