-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJobSystem.cpp
41 lines (34 loc) · 932 Bytes
/
JobSystem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//===----------------------------------------------------------------------===//
// JoshMake Build Infrastructure
//
// This file is distributed under the MIT Open Source License. See
// LICENSE.TXT for details.
//===----------------------------------------------------------------------===//
#include <chrono>
#include "JobSystem.h"
namespace JoshMake
{
JobSystem::JobSystem() : mShouldClose(false)
{
auto threadsToMake = std::thread::hardware_concurrency();
threadsToMake = threadsToMake <= 0 ? 1 : threadsToMake;
for (unsigned i = 0; i < threadsToMake; ++i)
{
mThreads.emplace_back(&JobSystem::ThreadMain, this);
}
}
void JobSystem::ThreadMain()
{
while (mShouldClose == false)
{
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
}
void JobSystem::Join()
{
for (auto &thread : mThreads)
{
thread.join();
}
}
}