doxygen @ tags replaced to \

This commit is contained in:
2022-03-14 21:19:31 +03:00
parent 9bf1a11701
commit 54b5372356
142 changed files with 1079 additions and 1079 deletions

View File

@@ -1,5 +1,5 @@
/*! @file pimutex.h
* @brief PIMutex, PIMutexLocker
/*! \file pimutex.h
* \brief PIMutex, PIMutexLocker
*/
/*
PIP - Platform Independent Primitives
@@ -38,16 +38,16 @@ public:
~PIMutex();
//! @brief Lock mutex
//! \brief Lock mutex
//! \details If mutex is unlocked it set to locked state and returns immediate.
//! If mutex is already locked function blocks until mutex will be unlocked
void lock();
//! @brief Unlock mutex
//! \brief Unlock mutex
//! \details In any case this function returns immediate
void unlock() ;
//! @brief Try to lock mutex
//! \brief Try to lock mutex
//! \details If mutex is unlocked it set to locked state and returns "true" immediate.
//! If mutex is already locked function returns immediate an returns "false"
bool tryLock();
@@ -63,7 +63,7 @@ private:
};
//! @brief PIMutexLocker
//! \brief PIMutexLocker
//! \details Same as std::lock_guard<std::mutex>.
//! When a PIMutexLocker object is created, it attempts to lock the mutex it is given, if "condition" true.
//! When control leaves the scope in which the PIMutexLocker object was created,