more mutexes

This commit is contained in:
Max-Wilhelm Bruker 2011-03-22 19:37:56 +01:00
parent 4548841a93
commit 81a5d58d70
10 changed files with 127 additions and 7 deletions

View file

@ -2,6 +2,7 @@
#define SERVER_LOGGER_H
#include <QObject>
#include <QMutex>
class QSocketNotifier;
class QFile;
@ -20,6 +21,7 @@ private:
static int sigHupFD[2];
QSocketNotifier *snHup;
static QFile *logFile;
QMutex logFileMutex;
};
#endif