summaryrefslogtreecommitdiff
path: root/src/m
diff options
context:
space:
mode:
authorSean Miller <seanmiller999@gmail.com>2026-04-16 13:15:04 +0100
committerSean Miller <seanmiller999@gmail.com>2026-04-16 13:15:04 +0100
commit0aeec983a4d18b12367a7c68c05e89abb05cff35 (patch)
tree88260e0372fabec145795e0f7d98f076c114bf34 /src/m
parent9eb87eb75ec6f8845b4066dd8e7684d752e8b2b9 (diff)
Rename ThreadMonitor to ThreadMgr
Diffstat (limited to 'src/m')
-rw-r--r--src/m/m_thread.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/m/m_thread.cpp b/src/m/m_thread.cpp
index 3311b080..e9a1a136 100644
--- a/src/m/m_thread.cpp
+++ b/src/m/m_thread.cpp
@@ -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);
}
}