2021-09-12 03:32:14 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2021-09-12 03:32:14 +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/>.
|
|
|
|
*/
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams {
|
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace lm::srv {
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void StartLogServerProxy();
|
|
|
|
void StopLogServerProxy();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void InitializeFlushThread();
|
|
|
|
void FinalizeFlushThread();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void InitializeIpcServer();
|
|
|
|
void LoopIpcServer();
|
|
|
|
void FinalizeIpcServer();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
}
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace init {
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void InitializeSystemModule() {
|
|
|
|
/* Initialize our connection to sm. */
|
|
|
|
R_ABORT_UNLESS(sm::Initialize());
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Initialize services we need. */
|
|
|
|
R_ABORT_UNLESS(::setsysInitialize());
|
|
|
|
R_ABORT_UNLESS(::pscmInitialize());
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Verify that we can sanely execute. */
|
|
|
|
ams::CheckApiVersion();
|
|
|
|
}
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void FinalizeSystemModule() { /* ... */ }
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Startup() { /* ... */ }
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
}
|
2021-10-07 07:22:54 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Main() {
|
|
|
|
/* Check thread priority. */
|
|
|
|
AMS_ASSERT(os::GetThreadPriority(os::GetCurrentThread()) == AMS_GET_SYSTEM_THREAD_PRIORITY(LogManager, MainThread));
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Set thread name. */
|
|
|
|
os::ChangeThreadPriority(os::GetCurrentThread(), AMS_GET_SYSTEM_THREAD_PRIORITY(lm, IpcServer));
|
|
|
|
os::SetThreadNamePointer(os::GetCurrentThread(), AMS_GET_SYSTEM_THREAD_NAME(lm, IpcServer));
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Start log server proxy. */
|
|
|
|
lm::srv::StartLogServerProxy();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Initialize flush thread. */
|
|
|
|
lm::srv::InitializeFlushThread();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Process IPC server. */
|
|
|
|
lm::srv::InitializeIpcServer();
|
|
|
|
lm::srv::LoopIpcServer();
|
|
|
|
lm::srv::FinalizeIpcServer();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Finalize flush thread. */
|
|
|
|
lm::srv::FinalizeFlushThread();
|
2021-09-12 03:32:14 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Stop log server proxy. */
|
|
|
|
lm::srv::StopLogServerProxy();
|
|
|
|
}
|
2021-09-12 03:32:14 +01:00
|
|
|
|
|
|
|
}
|