diff options
author | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 21:43:19 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 21:43:19 +0200 |
commit | 01c899f9036a01d7c60d05b89c953138a1770810 (patch) | |
tree | 964e8ee4893a1fe346d20fdfbe027bf30a4ba122 /src/OSSupport/IsThread.h | |
parent | Temporarily commented out override directives. (diff) | |
download | cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.gz cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.bz2 cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.lz cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.xz cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.zst cuberite-01c899f9036a01d7c60d05b89c953138a1770810.zip |
Diffstat (limited to 'src/OSSupport/IsThread.h')
-rw-r--r-- | src/OSSupport/IsThread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OSSupport/IsThread.h b/src/OSSupport/IsThread.h index 2b9b2ae4b..f349d0895 100644 --- a/src/OSSupport/IsThread.h +++ b/src/OSSupport/IsThread.h @@ -7,7 +7,7 @@ /* Usage: To have a new thread, declare a class descending from cIsClass. -Then /*override*/ its Execute() method to provide your thread processing. +Then override its Execute() method to provide your thread processing. In the descending class' constructor call the Start() method to start the thread once you're finished with initialization. */ @@ -29,7 +29,7 @@ protected: /// This is the main thread entrypoint virtual void Execute(void) = 0; - /// The /*override*/n Execute() method should check this value periodically and terminate if this is true + /// The overridden Execute() method should check this value periodically and terminate if this is true volatile bool m_ShouldTerminate; public: |