mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
name some threads
This commit is contained in:
@ -69,6 +69,8 @@ void DiscordHandler::ShowNewJoinRequest(const std::string& id, const std::string
|
||||
|
||||
void DiscordHandler::Run()
|
||||
{
|
||||
Common::SetCurrentThreadName("DiscordHandler");
|
||||
|
||||
while (!m_stop_requested.IsSet())
|
||||
{
|
||||
Discord::CallPendingCallbacks();
|
||||
|
@ -134,6 +134,8 @@ static void HandleFrameStepHotkeys()
|
||||
|
||||
void HotkeyScheduler::Run()
|
||||
{
|
||||
Common::SetCurrentThreadName("HotkeyScheduler");
|
||||
|
||||
while (!m_stop_requested.IsSet())
|
||||
{
|
||||
Common::SleepCurrentThread(1000 / 60);
|
||||
|
Reference in New Issue
Block a user