Basic pool settup

This commit is contained in:
Benjamin Kyd
2019-04-06 18:09:05 +01:00
parent 0a6c492fef
commit dc062bfb00
9 changed files with 99 additions and 1 deletions

1
test/build.bat Normal file
View File

@@ -0,0 +1 @@
g++ main.cpp ../libpool/*.cpp -I../libpool/ -pthread -o ../output.exe

View File

@@ -0,0 +1,9 @@
#include <iostream>
#include <libpool.h>
int main(int argc, char** argv) {
Pool threadPool { 5 };
}