diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/threadsocket.h | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'include/threadsocket.h')
| -rw-r--r-- | include/threadsocket.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/threadsocket.h b/include/threadsocket.h index 95e73e2de..39e3f4346 100644 --- a/include/threadsocket.h +++ b/include/threadsocket.h @@ -28,12 +28,12 @@ class ThreadSignalSocket; class CoreExport SocketThread : public Thread { - private: +private: std::mutex mutex; std::condition_variable_any condvar; ThreadSignalSocket* socket; - protected: +protected: /** Waits for an enqueue operation to complete * You MUST hold the queue lock when you call this. * It will be unlocked while you wait, and will be relocked @@ -43,7 +43,7 @@ class CoreExport SocketThread { condvar.wait(mutex); } - public: +public: /** Notifies parent by making the SignalFD ready to read * No requirements on locking */ |
