mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-12 15:06:41 +00:00
11 lines
260 B
C++
11 lines
260 B
C++
#include <mesosphere/core/KCoreContext.hpp>
|
|
#include <mesosphere/threading/KScheduler.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
static KScheduler scheds[4];
|
|
|
|
std::array<KCoreContext, MAX_CORES> KCoreContext::instances{ &scheds[0], &scheds[1], &scheds[2], &scheds[3] };
|
|
|
|
}
|