Rename ThreadMonitor to ThreadMgr

This commit is contained in:
Sean Miller
2026-04-16 13:15:04 +01:00
parent 9eb87eb75e
commit 0aeec983a4
6 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
#include "m/m_thread.h"
#include "egg/core/eggThreadMonitor.h"
#include "egg/core/eggThreadMgr.h"
#include "rvl/OS/OSThread.h"
void mThread::registerThread(OSThread *thread, void *threadArg) {
if (threadArg && EGG::ThreadMonitor::getInstance()) {
EGG::ThreadMonitor::getInstance()->registerThread(thread, *(EGG::UnknownStruct *)threadArg);
if (threadArg && EGG::ThreadMgr::getInstance()) {
EGG::ThreadMgr::getInstance()->registerThread(thread, *(EGG::UnknownStruct *)threadArg);
}
}