Skip to content

Commit

Permalink
Add a missing thread name
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Jan 29, 2024
1 parent f4b7cfe commit 01c2ffd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Core/Debugger/MemBlockInfo.cpp
Expand Up @@ -25,6 +25,7 @@
#include "Common/Log.h"
#include "Common/Serialize/Serializer.h"
#include "Common/Serialize/SerializeFuncs.h"
#include "Common/Thread/ThreadUtil.h"
#include "Core/Config.h"
#include "Core/CoreTiming.h"
#include "Core/Debugger/Breakpoints.h"
Expand Down Expand Up @@ -675,6 +676,8 @@ size_t FormatMemWriteTagAtNoFlush(char *buf, size_t sz, const char *prefix, uint
}

static void FlushMemInfoThread() {
SetCurrentThreadName("FlushMemInfo");

while (flushThreadRunning.load()) {
flushThreadPending = false;
FlushPendingMemInfo();
Expand Down

0 comments on commit 01c2ffd

Please sign in to comment.