mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-13 23:46:40 +00:00
14 lines
397 B
C++
14 lines
397 B
C++
#include <mesosphere/processes/KProcess.hpp>
|
|
#include <mesosphere/threading/KThread.hpp>
|
|
#include <mesosphere/kresources/KResourceLimit.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
void KProcess::SetLastThreadAndIdleSelectionCount(KThread *thread, ulong idleSelectionCount)
|
|
{
|
|
lastThreads[thread->GetCurrentCoreId()] = thread;
|
|
lastIdleSelectionCount[thread->GetCurrentCoreId()] = idleSelectionCount;
|
|
}
|
|
|
|
}
|