mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys: fix doxygen grouping of tsrb und embUnit
This commit is contained in:
parent
e91c077ae0
commit
b7eecca93c
@ -9,9 +9,11 @@
|
||||
/**
|
||||
* @defgroup unittests Unittests
|
||||
* @ingroup sys
|
||||
* @brief RIOT Unittests based on the EmbUnit Framework
|
||||
*
|
||||
* @note
|
||||
* Please refer to https://github.com/RIOT-OS/RIOT/wiki/Testing-RIOT
|
||||
* @see http://embunit.sourceforge.net/embunit/
|
||||
*
|
||||
* @note Please refer to https://github.com/RIOT-OS/RIOT/wiki/Testing-RIOT
|
||||
*
|
||||
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||
*/
|
||||
|
@ -9,17 +9,16 @@
|
||||
/**
|
||||
* @defgroup sys_tsrb Thread safe ringbuffer
|
||||
* @ingroup sys
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief Thread-safe ringbuffer implementation
|
||||
* @{
|
||||
*
|
||||
* This ringbuffer implementation can be used without locking if
|
||||
* there's only one producer and one consumer.
|
||||
* @file
|
||||
* @brief Thread-safe ringbuffer interface definition
|
||||
*
|
||||
* @note Buffer size must be a power of two!
|
||||
* @note This ringbuffer implementation can be used without locking if
|
||||
* there's only one producer and one consumer.
|
||||
*
|
||||
* @attention Buffer size must be a power of two!
|
||||
*
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
*/
|
||||
@ -150,5 +149,5 @@ int tsrb_add(tsrb_t *rb, const char *src, size_t n);
|
||||
}
|
||||
#endif
|
||||
|
||||
/** @} */
|
||||
#endif /* TSRB_H */
|
||||
/** @} */
|
||||
|
Loading…
Reference in New Issue
Block a user