aboutsummaryrefslogtreecommitdiff
path: root/include/threadsocket.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/threadsocket.h
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'include/threadsocket.h')
-rw-r--r--include/threadsocket.h6
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
*/