Core/HLE/HLE_OS: Mark helpers as static where applicable

Previously, these were given external linkage when they're only used within
this translation unit.
This commit is contained in:
Lioncache 2023-12-18 13:44:52 -05:00
parent c4df659e21
commit 04300114f7

View File

@ -30,11 +30,9 @@ enum class ParameterType : bool
VariableArgumentList = true VariableArgumentList = true
}; };
std::string GetStringVA(Core::System& system, const Core::CPUThreadGuard& guard, u32 str_reg = 3, static std::string GetStringVA(Core::System& system, const Core::CPUThreadGuard& guard,
u32 str_reg = 3,
ParameterType parameter_type = ParameterType::ParameterList); ParameterType parameter_type = ParameterType::ParameterList);
void HLE_GeneralDebugPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type);
void HLE_LogDPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type);
void HLE_LogFPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type);
void HLE_OSPanic(const Core::CPUThreadGuard& guard) void HLE_OSPanic(const Core::CPUThreadGuard& guard)
{ {
@ -55,7 +53,7 @@ void HLE_OSPanic(const Core::CPUThreadGuard& guard)
} }
// Generalized function for printing formatted string. // Generalized function for printing formatted string.
void HLE_GeneralDebugPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type) static void HLE_GeneralDebugPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type)
{ {
auto& system = guard.GetSystem(); auto& system = guard.GetSystem();
const auto& ppc_state = system.GetPPCState(); const auto& ppc_state = system.GetPPCState();
@ -139,7 +137,7 @@ void HLE_write_console(const Core::CPUThreadGuard& guard)
} }
// Log (v)dprintf message if fd is 1 (stdout) or 2 (stderr) // Log (v)dprintf message if fd is 1 (stdout) or 2 (stderr)
void HLE_LogDPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type) static void HLE_LogDPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type)
{ {
auto& system = guard.GetSystem(); auto& system = guard.GetSystem();
const auto& ppc_state = system.GetPPCState(); const auto& ppc_state = system.GetPPCState();
@ -168,7 +166,7 @@ void HLE_LogVDPrint(const Core::CPUThreadGuard& guard)
} }
// Log (v)fprintf message if FILE is stdout or stderr // Log (v)fprintf message if FILE is stdout or stderr
void HLE_LogFPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type) static void HLE_LogFPrint(const Core::CPUThreadGuard& guard, ParameterType parameter_type)
{ {
auto& system = guard.GetSystem(); auto& system = guard.GetSystem();
const auto& ppc_state = system.GetPPCState(); const auto& ppc_state = system.GetPPCState();
@ -242,7 +240,7 @@ private:
}; };
} // namespace } // namespace
std::string GetStringVA(Core::System& system, const Core::CPUThreadGuard& guard, u32 str_reg, static std::string GetStringVA(Core::System& system, const Core::CPUThreadGuard& guard, u32 str_reg,
ParameterType parameter_type) ParameterType parameter_type)
{ {
auto& ppc_state = system.GetPPCState(); auto& ppc_state = system.GetPPCState();