Merge pull request #168 from DavidLin1577/patch-8

Fixed the wrong notes in tos_barrier.h
This commit is contained in:
Arthur
2020-06-08 19:57:47 +08:00
committed by GitHub

View File

@@ -44,12 +44,11 @@ typedef struct k_barrier_st {
__API__ k_err_t tos_barrier_create(k_barrier_t *barrier, k_barrier_cnt_t count);
/**
* @brief Create a thread barrier.
* @brief Destroy a thread barrier.
*
* @attention the count must be greater then zero.
* @attention
*
* @param[in] barrier the barrier.
* @param[in] count the number of threads(task) must call tos_barrier_pend before any of them successfully return from the call.
*
* @return errcode
* @retval #K_ERR_NONE return successfully.