mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
improve api docs
This commit is contained in:
parent
e069232806
commit
2d4ce2d0f9
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
2023/04/21
|
2023/04/21
|
||||||
* 完善action thread pool(感谢俊杰提供补丁)
|
* 完善action thread pool(感谢俊杰提供补丁)
|
||||||
|
* 完善文档注释(感谢俊杰提供补丁)
|
||||||
|
|
||||||
2023/04/19
|
2023/04/19
|
||||||
* 新增is\_horizon属性判断(感谢高源提供补丁)
|
* 新增is\_horizon属性判断(感谢高源提供补丁)
|
||||||
|
@ -71,7 +71,7 @@ typedef struct _action_thread_pool_t {
|
|||||||
* 创建action_thread_pool对象。
|
* 创建action_thread_pool对象。
|
||||||
*
|
*
|
||||||
* @param {uint16_t} max_thread_nr 最大线程数。
|
* @param {uint16_t} max_thread_nr 最大线程数。
|
||||||
* @param {uint16_t} min_idle_nr 最小空闲线程数。
|
* @param {uint16_t} min_idle_nr 最小空闲线程数(必须大于0)。
|
||||||
*
|
*
|
||||||
* @return {action_thread_pool_t*} action_thread_pool对象。
|
* @return {action_thread_pool_t*} action_thread_pool对象。
|
||||||
*/
|
*/
|
||||||
@ -83,7 +83,7 @@ action_thread_pool_t* action_thread_pool_create(uint16_t max_thread_nr, uint16_t
|
|||||||
* 创建action_thread_pool对象。
|
* 创建action_thread_pool对象。
|
||||||
*
|
*
|
||||||
* @param {uint16_t} max_thread_nr 最大线程数。
|
* @param {uint16_t} max_thread_nr 最大线程数。
|
||||||
* @param {uint16_t} min_idle_nr 最小空闲线程数。
|
* @param {uint16_t} min_idle_nr 最小空闲线程数(必须大于0)。
|
||||||
* @param {uint32_t} stack_size 栈的大小。
|
* @param {uint32_t} stack_size 栈的大小。
|
||||||
* @param {tk_thread_priority_t} priority 优先级
|
* @param {tk_thread_priority_t} priority 优先级
|
||||||
*
|
*
|
||||||
|
@ -58,7 +58,7 @@ ret_t async_call(async_exec_t exec, async_on_result_t on_result, void* ctx);
|
|||||||
*
|
*
|
||||||
* @annotation ["static"]
|
* @annotation ["static"]
|
||||||
* @param {uint32_t} max_threads 最大线程数。
|
* @param {uint32_t} max_threads 最大线程数。
|
||||||
* @param {uint32_t} min_threads 最小线程数。
|
* @param {uint32_t} min_threads 最小线程数(必须大于0)。
|
||||||
*
|
*
|
||||||
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
|
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
|
||||||
*
|
*
|
||||||
@ -71,7 +71,7 @@ ret_t async_call_init_ex(uint32_t max_threads, uint32_t min_threads);
|
|||||||
*
|
*
|
||||||
* @annotation ["static"]
|
* @annotation ["static"]
|
||||||
* @param {uint32_t} max_threads 最大线程数。
|
* @param {uint32_t} max_threads 最大线程数。
|
||||||
* @param {uint32_t} min_threads 最小线程数。
|
* @param {uint32_t} min_threads 最小线程数(必须大于0)。
|
||||||
* @param {uint32_t} stack_size 栈空间大小(字节)。
|
* @param {uint32_t} stack_size 栈空间大小(字节)。
|
||||||
*
|
*
|
||||||
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
|
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
|
||||||
|
Loading…
Reference in New Issue
Block a user