mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-29 23:41:19 -06:00
11 lines
238 B
C++
11 lines
238 B
C++
// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <string>
|
|
|
|
namespace Common {
|
|
|
|
std::string GetCurrentThreadName() { return "shadPS4::Test"; }
|
|
|
|
} // namespace Common
|