Atmosphere/mesosphere/source/core/KCoreContext.cpp

12 lines
260 B
C++
Raw Normal View History

2018-10-31 16:47:31 -04:00
#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] };
}