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;
/** /**