YLH

导航

 

2012年10月25日

摘要: /* 头文件:threadpool.h*/#ifndef _TP_H_INCLUDED_#define _TP_H_INCLUDED_#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <sys/types.h>#include <pthread.h>#include <assert.h>typedef struct worker { void * (*process) (void *arg); void *arg; struct worker 阅读全文
posted @ 2012-10-25 15:34 YLH 阅读(1371) 评论(0) 推荐(0) 编辑