1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

xtimer/xtimer.c document mutex_thread_t

comment for mutex_thread_t
This commit is contained in:
JulianHolzwarth 2019-05-24 16:41:09 +02:00
parent d66ac85b8d
commit 301d88c04a

View File

@ -38,6 +38,10 @@
#define ENABLE_DEBUG 0
#include "debug.h"
/*
* @brief: struct for mutex lock with timeout
* xtimer_mutex_lock_timeout() uses it to give information to the timer callback function
*/
typedef struct {
mutex_t *mutex;
thread_t *thread;