blob: 1a09bb15e1c5c5fcfb2bcc0545e8f76f90043c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __DARKRL__SYSTEM_HPP__
#define __DARKRL__SYSTEM_HPP__
#include <thread>
class System
{
public:
System() = delete;
static unsigned int CPUCores();
static void SetThreadName( std::thread& thread, const char* name );
};
#endif
|