2014-12-17 11:08:14 +05:30
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 05:47:46 +05:30
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "common/thread.h"
|
2013-09-05 05:47:46 +05:30
|
|
|
#ifdef __APPLE__
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <mach/mach.h>
|
2014-09-03 10:35:45 +05:30
|
|
|
#elif defined(_WIN32)
|
2016-12-04 01:38:02 +05:30
|
|
|
#include <windows.h>
|
2015-06-21 03:15:15 +05:30
|
|
|
#else
|
2016-10-10 07:55:19 +05:30
|
|
|
#if defined(__Bitrig__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__)
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <pthread_np.h>
|
|
|
|
#else
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
#include <sched.h>
|
2015-06-21 03:15:15 +05:30
|
|
|
#endif
|
|
|
|
#ifndef _WIN32
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <unistd.h>
|
2013-09-05 05:47:46 +05:30
|
|
|
#endif
|
|
|
|
|
2016-10-10 08:03:41 +05:30
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#define cpu_set_t cpuset_t
|
|
|
|
#endif
|
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
namespace Common {
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2014-12-30 09:29:14 +05:30
|
|
|
#ifdef _MSC_VER
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
// Sets the debugger-visible name of the current thread.
|
|
|
|
// Uses undocumented (actually, it is now documented) trick.
|
|
|
|
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug/html/vxtsksettingthreadname.asp
|
2014-11-19 14:19:13 +05:30
|
|
|
|
2013-09-05 05:47:46 +05:30
|
|
|
// This is implemented much nicer in upcoming msvc++, see:
|
|
|
|
// http://msdn.microsoft.com/en-us/library/xcb2z8hs(VS.100).aspx
|
2018-11-22 08:23:35 +05:30
|
|
|
void SetCurrentThreadName(const char* name) {
|
2014-04-02 03:50:08 +05:30
|
|
|
static const DWORD MS_VC_EXCEPTION = 0x406D1388;
|
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
#pragma pack(push, 8)
|
|
|
|
struct THREADNAME_INFO {
|
|
|
|
DWORD dwType; // must be 0x1000
|
|
|
|
LPCSTR szName; // pointer to name (in user addr space)
|
2014-04-02 03:50:08 +05:30
|
|
|
DWORD dwThreadID; // thread ID (-1=caller thread)
|
2016-09-18 06:08:01 +05:30
|
|
|
DWORD dwFlags; // reserved for future use, must be zero
|
2014-04-02 03:50:08 +05:30
|
|
|
} info;
|
2016-09-18 06:08:01 +05:30
|
|
|
#pragma pack(pop)
|
2014-04-02 03:50:08 +05:30
|
|
|
|
|
|
|
info.dwType = 0x1000;
|
2018-11-22 08:23:35 +05:30
|
|
|
info.szName = name;
|
2016-09-18 06:08:01 +05:30
|
|
|
info.dwThreadID = -1; // dwThreadID;
|
2014-04-02 03:50:08 +05:30
|
|
|
info.dwFlags = 0;
|
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
__try {
|
|
|
|
RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(ULONG_PTR), (ULONG_PTR*)&info);
|
|
|
|
} __except (EXCEPTION_CONTINUE_EXECUTION) {
|
2014-04-02 03:50:08 +05:30
|
|
|
}
|
2013-09-05 05:47:46 +05:30
|
|
|
}
|
2014-11-19 14:19:13 +05:30
|
|
|
|
2014-11-29 11:08:20 +05:30
|
|
|
#else // !MSVC_VER, so must be POSIX threads
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2014-11-29 11:08:20 +05:30
|
|
|
// MinGW with the POSIX threading model does not support pthread_setname_np
|
2014-12-30 09:29:14 +05:30
|
|
|
#if !defined(_WIN32) || defined(_MSC_VER)
|
2018-11-22 08:23:35 +05:30
|
|
|
void SetCurrentThreadName(const char* name) {
|
2013-09-05 05:47:46 +05:30
|
|
|
#ifdef __APPLE__
|
2018-11-22 08:23:35 +05:30
|
|
|
pthread_setname_np(name);
|
2016-10-10 07:55:19 +05:30
|
|
|
#elif defined(__Bitrig__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__)
|
2018-11-22 08:23:35 +05:30
|
|
|
pthread_set_name_np(pthread_self(), name);
|
2016-10-10 07:55:19 +05:30
|
|
|
#elif defined(__NetBSD__)
|
2018-11-22 08:23:35 +05:30
|
|
|
pthread_setname_np(pthread_self(), "%s", (void*)name);
|
2013-09-05 05:47:46 +05:30
|
|
|
#else
|
2018-11-22 08:23:35 +05:30
|
|
|
pthread_setname_np(pthread_self(), name);
|
2013-09-05 05:47:46 +05:30
|
|
|
#endif
|
|
|
|
}
|
2014-11-29 11:08:20 +05:30
|
|
|
#endif
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace Common
|