1 Star 0 Fork 6

Vic_Is_Genius/基于链表实现的C工作任务

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_work.c 700 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include<stdio.h>
#include "work.h"
void work1()
{
printf("hello world! \n");
}
void work2()
{
printf("hello kitty! \n");
}
void work3()
{
printf("hello debug! \n");
}
work work_Register[] = {
{3,"hello world",work1},
{1,"hello kitty",work2},
{2,"hello debug",work3},
};
int main(void)
{
s32 i ;
INIT_WORK(work_node);
for(i = ZERO ; i < NR(work_Register) ; i++)
{
REGISTER_WORK(work_node , create_cwork(work_Register[i].work_num ,work_Register[i].work_name , work_Register[i].work_handler));
}
SCHEDULING_WORK(work_node,Positive,NR(work_Register));
DESTROY_WORK(work_node,work_Register);
printf("work_node:%p\n",work_node);
return 0 ;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/vic_is_genius/JiYuLianBiaoShiXianDeCGongZuoRenWu.git
git@gitee.com:vic_is_genius/JiYuLianBiaoShiXianDeCGongZuoRenWu.git
vic_is_genius
JiYuLianBiaoShiXianDeCGongZuoRenWu
基于链表实现的C工作任务
master

搜索帮助