mirror of
https://github.com/zeldaret/ss
synced 2026-09-09 19:51:39 -04:00
Rename ThreadMonitor to ThreadMgr
This commit is contained in:
+3
-3
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user