2009-11-16 13:54:32 +00:00
|
|
|
/* Cpudetection lib
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2009-11-16 13:54:32 +00:00
|
|
|
*
|
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/RedtapeWindows.h"
|
|
|
|
#include "common/emitter/tools.h"
|
2009-11-16 13:54:32 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// Thread Affinity Lock
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// Assign a single CPU/core for this thread's affinity to ensure rdtsc() accuracy.
|
|
|
|
// (rdtsc for each CPU/core can differ, causing skewed results)
|
|
|
|
|
|
|
|
class SingleCoreAffinity
|
|
|
|
{
|
|
|
|
protected:
|
2016-01-27 20:11:22 +00:00
|
|
|
#ifdef _WIN32
|
2016-11-12 15:28:37 +00:00
|
|
|
HANDLE s_threadId;
|
|
|
|
DWORD_PTR s_oldmask;
|
2009-11-16 13:54:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
2016-11-12 15:28:37 +00:00
|
|
|
SingleCoreAffinity();
|
2017-05-06 12:22:00 +00:00
|
|
|
virtual ~SingleCoreAffinity();
|
2009-11-16 13:54:32 +00:00
|
|
|
};
|