mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
14 lines
348 B
C
14 lines
348 B
C
#pragma once
|
|
|
|
static AUT_FN_ITEM __test_fn_tab[] = {
|
|
/* 命令字名称 函数提示名 回调函数名称 回调参数 是否是内部命令 */
|
|
|
|
/* In eventfd.cpp */
|
|
{ "test_eventfd", "test_eventfd", test_eventfd, NULL, 0 },
|
|
|
|
/* In poll.cpp */
|
|
{ "test_poll", "test_poll", test_poll, NULL, 0 },
|
|
|
|
{ NULL, NULL, NULL, NULL, 0 },
|
|
};
|