mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
32 lines
649 B
C++
32 lines
649 B
C++
#include "Threader.h"
|
|
|
|
int Threader::threadId = 0;
|
|
std::mutex Threader::m;
|
|
bool Threader::ready = false;
|
|
std::condition_variable Threader::cv;
|
|
std::queue<std::string> Threader::ipQueue;
|
|
|
|
void Threader::fireThread(std::string ip, void *func(void)) {
|
|
|
|
ipQueue.push(ip);
|
|
|
|
if(threadId < gThreads) {
|
|
++threadId;
|
|
std::thread workerThread(func);
|
|
workerThread.detach();
|
|
}
|
|
|
|
ready = true;
|
|
cv.notify_one();
|
|
Sleep(gThreadDelay);
|
|
}
|
|
|
|
void Threader::cleanUp() {
|
|
std::unique_lock<std::mutex> lk(m);
|
|
lk.unlock();
|
|
lk.release();
|
|
threadId = 0;
|
|
std::queue<std::string> empty = {};
|
|
std::swap(ipQueue, empty);
|
|
}
|