summaryrefslogtreecommitdiff
path: root/src/egg/core/eggThreadMonitor.cpp
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/egg/core/eggThreadMonitor.cpp
parent9eb87eb75ec6f8845b4066dd8e7684d752e8b2b9 (diff)
Rename ThreadMonitor to ThreadMgr
Diffstat (limited to 'src/egg/core/eggThreadMonitor.cpp')
-rw-r--r--src/egg/core/eggThreadMonitor.cpp73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/egg/core/eggThreadMonitor.cpp b/src/egg/core/eggThreadMonitor.cpp
deleted file mode 100644
index c7b2a5c6..00000000
--- a/src/egg/core/eggThreadMonitor.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-#include "egg/core/eggThreadMonitor.h"
-
-#include "rvl/OS.h"
-
-namespace EGG {
-
-ThreadMonitor *ThreadMonitor::sInstance; // Never initialized
-
-s32 ThreadMonitor::getThreadIndex(OSThread *thread) {
- for (s32 i = 0; i < mThreadCount; i++) {
- if (mThreadList[i].mThread == thread) {
- return i;
- }
- }
- return -1;
-}
-
-s32 ThreadMonitor::doRegisterThread(OSThread *thread) {
- if (mThreadCount != mMaxThreads) {
- s32 i = mThreadCount;
-
- mThreadList[i].mThread = thread;
- mThreadList[i]._04 = _EC;
- mThreadList[i]._08 = true;
- mThreadList[i]._09[0] = '\0';
- mThreadList[i]._2C = _F4;
-
- mThreadCount++;
-
- if (mSortEnabled) {
- sortByPriority();
- }
-
- return getThreadIndex(thread);
- }
-
- return -1;
-}
-
-void ThreadMonitor::sortByPriority() {
- // Selection sort on thread priority
- for (s32 i = 0; i < mThreadCount - 1; i++) {
- OSPriority minPrio = 31;
- s32 minPrioIndex = -1;
-
- for (s32 j = i; j < mThreadCount; j++) {
- OSPriority prio = OSGetThreadPriority(mThreadList[j].mThread);
- if (prio <= minPrio) {
- minPrio = prio;
- minPrioIndex = j;
- }
- }
-
- if (i != minPrioIndex) {
- ThreadInfo temp = mThreadList[i];
- mThreadList[i] = mThreadList[minPrioIndex];
- mThreadList[minPrioIndex] = temp;
- }
- }
-}
-
-void ThreadMonitor::registerThread(OSThread *thread, UnknownStruct arg) {
- s32 i = getThreadIndex(thread);
- if (i == -1) {
- i = doRegisterThread(thread);
- }
-
- if (i != -1) {
- mThreadList[i]._04 = arg;
- }
-}
-
-} // namespace EGG