mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
15 lines
No EOL
351 B
C++
15 lines
No EOL
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. */
|
|
}
|
|
} |