2019-04-21 02:13:32 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-04-21 02:13:32 +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/>.
|
|
|
|
*/
|
2020-05-11 23:02:10 +01:00
|
|
|
#include <stratosphere.hpp>
|
2020-07-08 01:07:23 +01:00
|
|
|
#include "ro_debug_monitor_service.hpp"
|
2019-06-24 10:05:51 +01:00
|
|
|
#include "impl/ro_service_impl.hpp"
|
2019-04-21 02:13:32 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::ro {
|
2019-06-24 10:05:51 +01:00
|
|
|
|
2021-10-11 02:22:32 +01:00
|
|
|
Result DebugMonitorService::GetProcessModuleInfo(sf::Out<u32> out_count, const sf::OutArray<ldr::ModuleInfo> &out_infos, os::ProcessId process_id) {
|
2021-10-05 20:22:34 +01:00
|
|
|
R_UNLESS(out_infos.GetSize() <= std::numeric_limits<s32>::max(), ro::ResultInvalidSize());
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(impl::GetProcessModuleInfo(out_count.GetPointer(), out_infos.GetPointer(), out_infos.GetSize(), process_id));
|
2019-04-21 10:09:08 +01:00
|
|
|
}
|
2019-06-24 10:05:51 +01:00
|
|
|
|
|
|
|
}
|