diff options
| author | Sean Miller <seanmiller999@gmail.com> | 2026-04-16 13:15:04 +0100 |
|---|---|---|
| committer | Sean Miller <seanmiller999@gmail.com> | 2026-04-16 13:15:04 +0100 |
| commit | 0aeec983a4d18b12367a7c68c05e89abb05cff35 (patch) | |
| tree | 88260e0372fabec145795e0f7d98f076c114bf34 /include | |
| parent | 9eb87eb75ec6f8845b4066dd8e7684d752e8b2b9 (diff) | |
Rename ThreadMonitor to ThreadMgr
Diffstat (limited to 'include')
| -rw-r--r-- | include/egg/core/eggThreadMgr.h (renamed from include/egg/core/eggThreadMonitor.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/egg/core/eggThreadMonitor.h b/include/egg/core/eggThreadMgr.h index 4d2eaaa4..9d292692 100644 --- a/include/egg/core/eggThreadMonitor.h +++ b/include/egg/core/eggThreadMgr.h @@ -30,11 +30,11 @@ struct ThreadInfo { }; // This is a complete guess -class ThreadMonitor { +class ThreadMgr { public: void registerThread(OSThread *thread, UnknownStruct); - static ThreadMonitor *getInstance() { + static ThreadMgr *getInstance() { return sInstance; } @@ -57,7 +57,7 @@ private: /* 0xF8 */ bool mSortEnabled; // size unsure, but this is the limit seen - static ThreadMonitor *sInstance; + static ThreadMgr *sInstance; }; } // namespace EGG |
