Fix comment on sys_mbox_new() (bug #49279)

This commit is contained in:
goldsimon 2016-10-06 13:25:11 +02:00
parent a1c0a0185b
commit 2afc2a52d5

View File

@ -160,9 +160,11 @@ typedef void (*lwip_thread_fn)(void *arg);
/** /**
* @ingroup sys_mutex * @ingroup sys_mutex
* Create a new mutex * Create a new mutex.
* Note that mutexes are expected to not be taken recursively by the lwIP code,
* so both implementation types (recursive or non-recursive) should work.
* @param mutex pointer to the mutex to create * @param mutex pointer to the mutex to create
* @return a new mutex * @return ERR_OK if successful, another err_t otherwise
*/ */
err_t sys_mutex_new(sys_mutex_t *mutex); err_t sys_mutex_new(sys_mutex_t *mutex);
/** /**