Add semaphore for work wit multithread

This commit is contained in:
marcelb 2023-07-27 18:32:14 +02:00
parent 152c8b6719
commit c2a5995e7e
4 changed files with 9 additions and 1 deletions

View File

@ -4,6 +4,7 @@
"iosfwd": "cpp",
"fstream": "cpp",
"*.tcc": "cpp",
"ostream": "cpp"
"ostream": "cpp",
"mutex": "cpp"
}
}

3
example/2023-07-27.log Normal file
View File

@ -0,0 +1,3 @@
18:29:30 [EVENT] Start loging
18:29:44 [EVENT] Start loging
18:29:47 [EVENT] Start loging

View File

@ -7,6 +7,7 @@
#include <fstream>
#include <time.h>
#include <sys/stat.h>
#include <mutex>
using namespace std;
@ -19,6 +20,7 @@ class log {
struct tm * moment;
uint day;
string path;
mutex io;
log (string _dir, bool _isKeepOpen = true, bool _printInConsole = false);

View File

@ -43,6 +43,7 @@ void log::setMoment() {
}
void log::put(string logline) {
io.lock();
if (printInConsole) {
cout << logline << endl;
}
@ -74,6 +75,7 @@ void log::put(string logline) {
if (!isKeepOpen && logfile.is_open()) {
loose();
}
io.unlock();
}