Newer
Older
Atmosphere / stratosphere / pm / source / pm_process_track.cpp
#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 that while loop. */
    }
}