线程池的源代码 //执行任务的链表节点信息 typedef struct tpool_work{ void * (*routine) (void *arg); //回调函数,任务运行时会回调此函数 void *arg; //回调函数的参数 struct tpool_work *next; //结点指针域 }tpoo