Atmosphere/stratosphere/pm/source/pm_process_track.cpp
2018-05-03 04:10:05 -06:00

15 lines
351 B
C++

#include <switch.h>
#include "pm_process_track.hpp"
void ProcessTracking::Initialize() {
/* TODO: Setup ResourceLimit values, create MainLoop thread. */
}
void ProcessTracking::MainLoop() {
/* TODO */
while (true) {
/* PM, as a sysmodule, is basically just a while loop. */
/* This is what while loop. */
}
}