- 论坛徽章:
- 15
|
本帖最后由 yulihua49 于 2015-08-27 13:48 编辑
Unix_C_Linux 发表于 2015-08-21 10:01 ![]()
大家好,有主进程A接收数据,现在想异步的对这些数据进行操作,然后临时存储,开了一个线程对他操作。我想问 ...
这就是我的处理线程,消费者。可以有很多线程在干:
- static void * cli_sched(void *reg)
- {
- tpool_node *thp=(tpool_node *)reg;
- int ret;
- struct epoll_event event;
- dlq_node *dlp;
- pthread_detach(thp->tid);
- thp->flg=0;
- ShowLog(2,"%s:tid=%lX created",__FUNCTION__,thp->tid);
- while(1) {
- if(lnum<LNUM) { //有几个线程在等epoll
- lnum++;
- ret = epoll_wait(epfd, &event, 1,-1);//等待服务器返回的消息
- lnum--;
- if(ret<0) break; //epfd关闭了,退出
- dlp=(dlq_node *)event.data.ptr;
- to_epoll(dlp,EPOLL_CTL_DEL,0);
- } else { //其他线程在等队列
- pthread_mutex_lock(&tmutx);
- while(NULL==(dlp=dlq_get(&tqueue))) { //提交给本线程池处理的消息
- //这就是告诉你的,等消息。其他线程加入队列后:pthread_cond_signal(&tcond);
- pthread_cond_wait(&tcond,&tmutx);
- }
- pthread_mutex_unlock(&tmutx);
- }
- if(dlp->callback) ret=dlp->callback(dlp);
- }
- thp->flg=-1;
- return NULL;
- }
复制代码 |
|