- 论坛徽章:
- 0
|
多线程退出的该如何维护?
原帖由 "surfzsl" 发表:
你先看看线程条件变量、线程的信号处理吧
你的程序设计的估计有问题
另外,很少用忙等作为等待条件的
我现在也怀疑我这样设计有问题 根据我的理解写出的代码,不知我的用法是否正确呢?
- //进行线程退出处理的线程
- void CMaintainThread::run()
- {
- while(1)
- {
- g_pCondition->;Wait(); //g_pCondition是我的全局变量
- //是条件变量封装类CMyCondition实例
- }
- pthread_exit(NULL);
- }
- //工作线程
- void CWorkerThread::run()
- {
- ......
- pthread_mutex_lock(&(g_pCondition->;m_Mutex));
- g_pCondition->;Wake(this);
- pthread_mutex_unlock(&(g_pCondition->;m_Mutex));
- pthread_exit(NULL);
- }
- //条件变量封装类
- class CMyCondition
- {
- pubic:
- pthread_mutex_t m_Mutex;
- pthread_cond_t m_Cond;
- CWorkerThread *m_pt;
- public:
- int Wait(int second=0);
- int Wake(CWorkerThread *pt);
- ......
- }
- int CMyCondition::Wait(int second)
- {
- struct timeval now;
- struct timespec timeout;
- int iRetCode;
- iRetCode = pthread_mutex_lock(&m_Mutex);
- if (iRetCode)
- {
- perror("pthread_mutex_lock\n");
- pthread_exit(NULL);
- }
- m_pt = NULL;
- if (second)
- {
- gettimeofday(&now, NULL);
- timeout.tv_sec = now.tv_sec + second;
- timeout.tv_nsec = now.tv_usec * 1000;
- m_iError = pthread_cond_timedwait(&m_Cond, &m_Mutex, &timeout);
- }
- else
- m_iError = pthread_cond_wait(&m_Cond, &m_Mutex);
- switch(m_iError)
- {
- case 0:
- //根据线程指针m_pt执行线程清理操作......
- pthread_mutex_unlock(&m_Mutex);
- return 0;
- case ETIMEDOUT:
- pthread_mutex_unlock(&m_Mutex);
- return 1;
- default:
- pthread_mutex_unlock(&m_Mutex);
- return 2;
- }
- }
- int CMyCondition::Wake(CWorkerThread *pt)
- {
- m_pt = pt;
- pthread_cond_signal(&m_Cond);
- }
复制代码 |
|