ppsspp/Common/Thread/ThreadUtil.h
2021-06-12 13:03:53 +02:00

8 lines
260 B
C

#pragma once
#include <mutex>
// Note that name must be a global string that lives until the end of the process,
// for AssertCurrentThreadName to work.
void SetCurrentThreadName(const char *threadName);
void AssertCurrentThreadName(const char *threadName);