mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-08-06 10:27:34 +00:00
Cleanup doxygen
This commit is contained in:
@@ -1,14 +1,19 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief Atomic mutex implementation.
|
||||
*
|
||||
* Configuration:
|
||||
* STA_ATOMIC_ENABLE: Enable module
|
||||
* STA_STDLIB_HAS_ATOMIC: Enable module
|
||||
*/
|
||||
#ifndef STA_CORE_ATOMIC_MUTEX_HPP
|
||||
#define STA_CORE_ATOMIC_MUTEX_HPP
|
||||
|
||||
#include <sta/config.hpp>
|
||||
#ifdef STA_ATOMIC_ENABLE
|
||||
#ifdef STA_STDLIB_HAS_ATOMIC
|
||||
# define STA_ATOMIC_ENABLED
|
||||
#endif // STA_STDLIB_HAS_ATOMIC
|
||||
|
||||
#if defined(STA_ATOMIC_ENABLED) || defined(DOXYGEN)
|
||||
|
||||
#include <sta/mutex.hpp>
|
||||
|
||||
@@ -34,6 +39,6 @@ namespace sta
|
||||
} // namespace sta
|
||||
|
||||
|
||||
#endif // STA_ATOMIC_ENABLE
|
||||
#endif // STA_ATOMIC_ENABLED
|
||||
|
||||
#endif // STA_CORE_ATOMIC_MUTEX_HPP
|
||||
|
@@ -1,14 +1,19 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief Atomic signal implementation.
|
||||
*
|
||||
* Configuration:
|
||||
* STA_ATOMIC_ENABLE: Enable module
|
||||
* STA_STDLIB_HAS_ATOMIC: Enable module
|
||||
*/
|
||||
#ifndef STA_CORE_ATOMIC_SIGNAL_HPP
|
||||
#define STA_CORE_ATOMIC_SIGNAL_HPP
|
||||
|
||||
#include <sta/config.hpp>
|
||||
#ifdef STA_ATOMIC_ENABLE
|
||||
#ifdef STA_STDLIB_HAS_ATOMIC
|
||||
# define STA_ATOMIC_ENABLED
|
||||
#endif // STA_STDLIB_HAS_ATOMIC
|
||||
|
||||
#if defined(STA_ATOMIC_ENABLED) || defined(DOXYGEN)
|
||||
|
||||
#include <sta/signal.hpp>
|
||||
|
||||
@@ -36,6 +41,6 @@ namespace sta
|
||||
} // namespace sta
|
||||
|
||||
|
||||
#endif // STA_ATOMIC_ENABLE
|
||||
#endif // STA_ATOMIC_ENABLED
|
||||
|
||||
#endif // STA_CORE_ATOMIC_SIGNAL_HPP
|
||||
|
Reference in New Issue
Block a user