2014-12-17 05:38:14 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 00:17:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2021-09-08 18:36:20 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "common/error.h"
|
2020-08-02 17:57:08 +00:00
|
|
|
#include "common/logging/log.h"
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/thread.h"
|
2013-09-05 00:17:46 +00:00
|
|
|
#ifdef __APPLE__
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <mach/mach.h>
|
2014-09-03 05:05:45 +00:00
|
|
|
#elif defined(_WIN32)
|
2016-12-03 20:08:02 +00:00
|
|
|
#include <windows.h>
|
2015-06-20 21:45:15 +00:00
|
|
|
#else
|
2016-10-10 02:25:19 +00:00
|
|
|
#if defined(__Bitrig__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__)
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <pthread_np.h>
|
|
|
|
#else
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
#include <sched.h>
|
2015-06-20 21:45:15 +00:00
|
|
|
#endif
|
|
|
|
#ifndef _WIN32
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <unistd.h>
|
2013-09-05 00:17:46 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-10 02:33:41 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#define cpu_set_t cpuset_t
|
|
|
|
#endif
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
namespace Common {
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2020-04-05 13:48:53 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
void SetCurrentThreadPriority(ThreadPriority new_priority) {
|
|
|
|
auto handle = GetCurrentThread();
|
|
|
|
int windows_priority = 0;
|
|
|
|
switch (new_priority) {
|
2020-05-08 22:53:13 +00:00
|
|
|
case ThreadPriority::Low:
|
|
|
|
windows_priority = THREAD_PRIORITY_BELOW_NORMAL;
|
|
|
|
break;
|
|
|
|
case ThreadPriority::Normal:
|
|
|
|
windows_priority = THREAD_PRIORITY_NORMAL;
|
|
|
|
break;
|
|
|
|
case ThreadPriority::High:
|
|
|
|
windows_priority = THREAD_PRIORITY_ABOVE_NORMAL;
|
|
|
|
break;
|
|
|
|
case ThreadPriority::VeryHigh:
|
|
|
|
windows_priority = THREAD_PRIORITY_HIGHEST;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
windows_priority = THREAD_PRIORITY_NORMAL;
|
|
|
|
break;
|
2020-04-05 13:48:53 +00:00
|
|
|
}
|
|
|
|
SetThreadPriority(handle, windows_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void SetCurrentThreadPriority(ThreadPriority new_priority) {
|
|
|
|
pthread_t this_thread = pthread_self();
|
|
|
|
|
|
|
|
s32 max_prio = sched_get_priority_max(SCHED_OTHER);
|
|
|
|
s32 min_prio = sched_get_priority_min(SCHED_OTHER);
|
|
|
|
u32 level = static_cast<u32>(new_priority) + 1;
|
|
|
|
|
|
|
|
struct sched_param params;
|
|
|
|
if (max_prio > min_prio) {
|
|
|
|
params.sched_priority = min_prio + ((max_prio - min_prio) * level) / 4;
|
|
|
|
} else {
|
|
|
|
params.sched_priority = min_prio - ((min_prio - max_prio) * level) / 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_setschedparam(this_thread, SCHED_OTHER, ¶ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-12-30 03:59:14 +00:00
|
|
|
#ifdef _MSC_VER
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
// Sets the debugger-visible name of the current thread.
|
2020-03-25 19:33:37 +00:00
|
|
|
// Uses trick documented in:
|
|
|
|
// https://docs.microsoft.com/en-us/visualstudio/debugger/how-to-set-a-thread-name-in-native-code
|
2018-11-22 02:53:35 +00:00
|
|
|
void SetCurrentThreadName(const char* name) {
|
2014-04-01 22:20:08 +00:00
|
|
|
static const DWORD MS_VC_EXCEPTION = 0x406D1388;
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
#pragma pack(push, 8)
|
|
|
|
struct THREADNAME_INFO {
|
|
|
|
DWORD dwType; // must be 0x1000
|
|
|
|
LPCSTR szName; // pointer to name (in user addr space)
|
2014-04-01 22:20:08 +00:00
|
|
|
DWORD dwThreadID; // thread ID (-1=caller thread)
|
2016-09-18 00:38:01 +00:00
|
|
|
DWORD dwFlags; // reserved for future use, must be zero
|
2014-04-01 22:20:08 +00:00
|
|
|
} info;
|
2016-09-18 00:38:01 +00:00
|
|
|
#pragma pack(pop)
|
2014-04-01 22:20:08 +00:00
|
|
|
|
|
|
|
info.dwType = 0x1000;
|
2018-11-22 02:53:35 +00:00
|
|
|
info.szName = name;
|
2020-03-25 19:33:37 +00:00
|
|
|
info.dwThreadID = std::numeric_limits<DWORD>::max();
|
2014-04-01 22:20:08 +00:00
|
|
|
info.dwFlags = 0;
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
__try {
|
|
|
|
RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(ULONG_PTR), (ULONG_PTR*)&info);
|
|
|
|
} __except (EXCEPTION_CONTINUE_EXECUTION) {
|
2014-04-01 22:20:08 +00:00
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
}
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
#else // !MSVC_VER, so must be POSIX threads
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
// MinGW with the POSIX threading model does not support pthread_setname_np
|
2014-12-30 03:59:14 +00:00
|
|
|
#if !defined(_WIN32) || defined(_MSC_VER)
|
2018-11-22 02:53:35 +00:00
|
|
|
void SetCurrentThreadName(const char* name) {
|
2013-09-05 00:17:46 +00:00
|
|
|
#ifdef __APPLE__
|
2018-11-22 02:53:35 +00:00
|
|
|
pthread_setname_np(name);
|
2016-10-10 02:25:19 +00:00
|
|
|
#elif defined(__Bitrig__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__)
|
2018-11-22 02:53:35 +00:00
|
|
|
pthread_set_name_np(pthread_self(), name);
|
2016-10-10 02:25:19 +00:00
|
|
|
#elif defined(__NetBSD__)
|
2018-11-22 02:53:35 +00:00
|
|
|
pthread_setname_np(pthread_self(), "%s", (void*)name);
|
2020-08-02 17:57:08 +00:00
|
|
|
#elif defined(__linux__)
|
|
|
|
// Linux limits thread names to 15 characters and will outright reject any
|
|
|
|
// attempt to set a longer name with ERANGE.
|
|
|
|
std::string truncated(name, std::min(strlen(name), static_cast<size_t>(15)));
|
|
|
|
if (int e = pthread_setname_np(pthread_self(), truncated.c_str())) {
|
|
|
|
errno = e;
|
|
|
|
LOG_ERROR(Common, "Failed to set thread name to '{}': {}", truncated, GetLastErrorMsg());
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
#else
|
2018-11-22 02:53:35 +00:00
|
|
|
pthread_setname_np(pthread_self(), name);
|
2013-09-05 00:17:46 +00:00
|
|
|
#endif
|
|
|
|
}
|
2014-11-29 05:38:20 +00:00
|
|
|
#endif
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
#if defined(_WIN32)
|
|
|
|
void SetCurrentThreadName(const char* name) {
|
|
|
|
// Do Nothing on MingW
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-05 00:17:46 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace Common
|