X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=accesslog.cpp;h=2d5eb0503e9ac00ab2c0bd7207f31eda61f1fa82;hp=4a54fdb8692b63c72ec6f85b8d37e37db5f7f125;hb=50651c954803c1941e6ad1bb494712891c18f7d2;hpb=a0fe013448d188b324c00383cfd91695d9d3d076 diff --git a/accesslog.cpp b/accesslog.cpp index 4a54fdb..2d5eb05 100644 --- a/accesslog.cpp +++ b/accesslog.cpp @@ -7,25 +7,22 @@ #include "accesslog.h" #include "client.h" #include "log.h" -#include "mutexlock.h" #include "timespec.h" using namespace std; AccessLogThread::AccessLogThread() { - pthread_mutex_init(&mutex, nullptr); } AccessLogThread::AccessLogThread(const string &filename) : filename(filename) { - pthread_mutex_init(&mutex, nullptr); } void AccessLogThread::write(const ClientStats& client) { { - MutexLock lock(&mutex); + lock_guard lock(mu); pending_writes.push_back(client); } wakeup(); @@ -48,7 +45,7 @@ void AccessLogThread::do_work() // Empty the queue. vector writes; { - MutexLock lock(&mutex); + lock_guard lock(mu); swap(pending_writes, writes); }