## tk\_semaphore\_t ### 概述 信号量。 ---------------------------------- ### 函数

| 函数名称 | 说明 | | -------- | ------------ | | tk\_semaphore\_create | 创建信号量对象。 | | tk\_semaphore\_destroy | 销毁信号量对象。 | | tk\_semaphore\_post | 释放资源。 | | tk\_semaphore\_wait | 获取资源。 | #### tk\_semaphore\_create 函数 ----------------------- * 函数功能: >

创建信号量对象。 * 函数原型: ``` tk_semaphore_t* tk_semaphore_create (uint32_t value, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | tk\_semaphore\_t* | semaphore对象。 | | value | uint32\_t | 初始值。 | | name | const char* | 名称。 | #### tk\_semaphore\_destroy 函数 ----------------------- * 函数功能: >

销毁信号量对象。 * 函数原型: ``` ret_t tk_semaphore_destroy (tk_semaphore_t* semaphore); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | semaphore | tk\_semaphore\_t* | 信号量对象。 | #### tk\_semaphore\_post 函数 ----------------------- * 函数功能: >

释放资源。 * 函数原型: ``` ret_t tk_semaphore_post (tk_semaphore_t* semaphore); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | semaphore | tk\_semaphore\_t* | 信号量对象。 | #### tk\_semaphore\_wait 函数 ----------------------- * 函数功能: >

获取资源。 * 函数原型: ``` ret_t tk_semaphore_wait (tk_semaphore_t* semaphore, uint32_t timeout); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | semaphore | tk\_semaphore\_t* | 信号量对象。 | | timeout | uint32\_t | 超时时间(毫秒)。 |