2013年9月2日

任哲版《嵌入式实时操作系统 ucos ii》笔记【1】--------基本数据结构TCB

摘要: 1 #include 2 #include 3 4 //declare the Tcb struch 5 6 typedef struct tcb{ 7 char * code_name; 8 int p; 9 int num;10 void (*fun)();11 }TCB;12 13 void function1()14 {15 printf("11111111111111111111\n");16 }17 18 void function2()19 {20 printf("2222222222222222222222\n");21 }... 阅读全文

posted @ 2013-09-02 14:46 イケメンおっさん_汪汪 阅读(550) 评论(0) 推荐(0) 编辑

导航