mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
18 lines
No EOL
550 B
C++
18 lines
No EOL
550 B
C++
#include <switch.h>
|
|
#include <stratosphere.hpp>
|
|
#include "pm_process_track.hpp"
|
|
#include "pm_registration.hpp"
|
|
#include "pm_debug.hpp"
|
|
|
|
void ProcessTracking::MainLoop(void *arg) {
|
|
/* Make a new waitable manager. */
|
|
WaitableManager *process_waiter = new WaitableManager(U64_MAX);
|
|
process_waiter->add_waitable(Registration::GetProcessLaunchStartEvent());
|
|
process_waiter->add_waitable(Registration::GetProcessList());
|
|
|
|
/* Service processes. */
|
|
process_waiter->process();
|
|
|
|
delete process_waiter;
|
|
svcExitThread();
|
|
} |