2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-18 10:30:34 +01:00
|
|
|
#include <switch.h>
|
2018-04-18 23:24:40 +01:00
|
|
|
#include <cstdio>
|
2018-04-19 23:14:48 +01:00
|
|
|
#include <algorithm>
|
2018-06-12 23:00:09 +01:00
|
|
|
#include <stratosphere.hpp>
|
2018-04-18 10:30:34 +01:00
|
|
|
#include "ldr_debug_monitor.hpp"
|
|
|
|
#include "ldr_launch_queue.hpp"
|
2018-04-19 23:14:48 +01:00
|
|
|
#include "ldr_registration.hpp"
|
2018-04-18 10:30:34 +01:00
|
|
|
|
2018-10-30 13:29:30 +00:00
|
|
|
Result DebugMonitorService::AddTitleToLaunchQueue(u64 tid, InPointer<char> args, u32 args_size) {
|
|
|
|
if (args.num_elements < args_size) args_size = args.num_elements;
|
|
|
|
return LaunchQueue::Add(tid, args.pointer, args_size);
|
2018-04-18 10:30:34 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 05:33:56 +00:00
|
|
|
void DebugMonitorService::ClearLaunchQueue() {
|
|
|
|
LaunchQueue::Clear();
|
2018-04-18 10:30:34 +01:00
|
|
|
}
|
|
|
|
|
2019-04-21 02:15:39 +01:00
|
|
|
Result DebugMonitorService::GetProcessModuleInfo(Out<u32> count, OutPointerWithClientSize<LoaderModuleInfo> out, u64 pid) {
|
2018-10-30 05:33:56 +00:00
|
|
|
/* Zero out the output memory. */
|
2019-04-21 02:15:39 +01:00
|
|
|
std::memset(out.pointer, 0, out.num_elements * sizeof(LoaderModuleInfo));
|
2018-10-30 05:33:56 +00:00
|
|
|
/* Actually return the nso infos. */
|
2019-04-21 02:15:39 +01:00
|
|
|
return Registration::GetProcessModuleInfo(out.pointer, out.num_elements, pid, count.GetPointer());
|
2018-05-05 19:41:39 +01:00
|
|
|
}
|