From f055137e021bd26e6b08ada42f04eea01b39367d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Sun, 8 Jan 2017 19:41:36 +0100 Subject: [PATCH] sys/posix: Add missing Doxygen comment on spinlock flag member --- sys/posix/pthread/include/pthread_spin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/posix/pthread/include/pthread_spin.h b/sys/posix/pthread/include/pthread_spin.h index 2661029a7e..e744625e34 100644 --- a/sys/posix/pthread/include/pthread_spin.h +++ b/sys/posix/pthread/include/pthread_spin.h @@ -33,7 +33,7 @@ extern "C" { * Use irq_disable() and irq_restore() for shortterm locks instead. */ typedef struct { - atomic_flag flag; + atomic_flag flag; /**< Current lock state */ } pthread_spinlock_t; /**