diff options
Diffstat (limited to 'src/m/m_thread.cpp')
| -rw-r--r-- | src/m/m_thread.cpp | 6 |
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); } } |
