mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
Stdafx: Major header cleanup
This commit is contained in:
parent
14050c7302
commit
6e06fdf638
41 changed files with 68 additions and 217 deletions
|
@ -1,5 +1,4 @@
|
|||
#pragma once
|
||||
#include "Array.h"
|
||||
#include <functional>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
@ -8,6 +7,13 @@
|
|||
#include <condition_variable>
|
||||
#include <Utilities/SSemaphore.h>
|
||||
|
||||
static std::thread::id main_thread;
|
||||
|
||||
struct rThread
|
||||
{
|
||||
static bool IsMain() { std::this_thread::get_id() == main_thread; }
|
||||
};
|
||||
|
||||
class ThreadExec;
|
||||
|
||||
class NamedThreadBase
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue