pthread_join分段错误

时间:2015-03-02 00:56:54

标签: c++ c multithreading pthread-join

我正在尝试将pthread_join与这个生产者 - 消费者计划一起使用,但我不断遇到分段错误。我的目的是等待所有生产者线程结束然后终止所有消费者。但是在第一个线程加入后我得到了一个分段错误。我搜索了网络,但没有找到任何有用的东西。任何想法?

using namespace std ;
int main()
{
  pthread_mutex_init(&mutex , NULL);
 sem_init(&full , 0 ,0);
 sem_init(&empty , 0 , BUFFER_SIZE);
  pthread_t ProducerThread , ConsumerThread;

 int *aa = new int [4];
 for(int i = 0 ; i < 4 ; i++)
 {
  aa[i] = i;
  pthread_t t;
  int k= pthread_create(&t , NULL, Produce , &aa[i]);
  if(k!=0)
  cout<<"Errot"<<endl;
  else  
  printf("Creating Producer %d \n", i);
 }
 int *bb = new int[2];
 for(int i = 0 ; i < 2 ; i++)
 {
  bb[i] = i;
  pthread_t t;
  pthread_create(&t , NULL, Consume , &bb[i]);
  printf("Creating Consumer %d \n", i);
 }
int s;
  for (int i=0;i<4;i++){
  s = pthread_join(aa[i],NULL);
               if (s != 0)
                   cout<< "pthread_join error" ;}

1 个答案:

答案 0 :(得分:4)

pthread_join()的参数是存储在pthread_create()的第一个参数中的值。

pthread_t t;
int k= pthread_create(&t , NULL, Produce , &aa[i]);

线程句柄是pthread_t t句柄。你用它做了什么?你扔掉它,然后将aa[i]参数传递给pthread_join()。

哪个不是线程句柄。

您需要保存pthread_t句柄,而 是传递给pthread_join()的。