多线程-预先创建多个线程的服务器程序,无法进入到线程执行函数
用c语言预先创建多个线程的服务器程序,无法进入到线程执行函数,void
*tp_work(THREAD_POOL *this)
{
fprintf(stdout,"%s n","tp_work is excute");
int HDSocketClient ;
int nseq;
pthread_t get_thread ;
get_thread = pthread_self();
nseq = get_thread_by_id(this, get_thread); //查看当前执行进程是否在线程id列里
if(nseq < 0)
{
return;
}
while (TRUE)
{
int i;
fprintf(stdout,"%s n","tp_work1111");
// pthread_mutex_lock(&this->thlock);
fprintf(stdout,"%s n","TCPAccept is start222");
HDSocketClient = TCPAccept( inipro.socket_listen );
// pthread_mutex_unlock(&this->thlock);
/*
if(DBReConnect ( ) != 0)
{
DCLogWriteStr ( __INFO__, "%s", DBDGetErr () );
DCLogClose( );
exit( 1 );
}
else
{
this->thread_info[i].flag = TRUE;
}
*/
//fprintf(stdout,"HDSocketClient=%d n",HDSocketClient);
//process_job( this);
TransEncapsulation(HDSocketClient);
fprintf(stdout, "tp_work ==============n");
// sleep(1);
pthread_mutex_lock(&this->thread_info[nseq].thread_lock);
this->thread_info[nseq].is_busy = FALSE;
pthread_mutex_unlock(&this->thread_info[nseq].thread_lock);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我表示你还有很多代码没贴出,感觉是进入死锁了。程序一共用了几个锁?几个锁之间的操作顺序先后最好不变。我声明我是菜鸟。哈哈。