1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-21 12:33:49 +01:00

sys/posix: Add missing Doxygen comment on spinlock flag member

This commit is contained in:
Joakim Nohlgård 2017-01-08 19:41:36 +01:00
parent bec5b57f0d
commit f055137e02

View File

@ -33,7 +33,7 @@ extern "C" {
* Use irq_disable() and irq_restore() for shortterm locks instead. * Use irq_disable() and irq_restore() for shortterm locks instead.
*/ */
typedef struct { typedef struct {
atomic_flag flag; atomic_flag flag; /**< Current lock state */
} pthread_spinlock_t; } pthread_spinlock_t;
/** /**