摘要: 1.定义一个任务结构体,和一个线程池结构体 struct task{ void *(*p)(void*);//需要实现的函数; void *arg;//函数所带的参数 struct task *next;};struct pthread_pool{ pthread_mutex_t mutex;//线 阅读全文
posted @ 2016-03-01 20:41 高傲的monkey 阅读(176) 评论(0) 推荐(0) 编辑