- wxMUTEX_NO_ERROR = 0, /** operation completed successfully */
- wxMUTEX_INVALID, /** mutex hasn't been initialized */
- wxMUTEX_DEAD_LOCK, /** mutex is already locked by the calling thread */
- wxMUTEX_BUSY, /** mutex is already locked by another thread */
- wxMUTEX_UNLOCKED, /** attempt to unlock a mutex which is not locked */
- wxMUTEX_TIMEOUT, /** LockTimeout() has timed out */
- wxMUTEX_MISC_ERROR /** any other error */
+ /** The operation completed successfully. */
+ wxMUTEX_NO_ERROR = 0,
+
+ /** The mutex hasn't been initialized. */
+ wxMUTEX_INVALID,
+
+ /** The mutex is already locked by the calling thread. */
+ wxMUTEX_DEAD_LOCK,
+
+ /** The mutex is already locked by another thread. */
+ wxMUTEX_BUSY,
+
+ /** An attempt to unlock a mutex which is not locked. */
+ wxMUTEX_UNLOCKED,
+
+ /** wxMutex::LockTimeout() has timed out. */
+ wxMUTEX_TIMEOUT,
+
+ /** Any other error */
+ wxMUTEX_MISC_ERROR