1

2つのスレッドを作成したいのですが、1つは最大を実行し、もう1つはコマンドラインに入力された数値のリストの平均を示します。

#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <limits.h>

void * thread1(int length, int array[] )
{

int ii = 0;
int smallest_value = INT_MAX;
        for (; ii < length; ++ii)
        {
                if (array[ii] < smallest_value)
                {
                        smallest_value = array[ii];
                }
        }
 printf("smallest is: %d\n", smallest_value);


}

void * thread2()
{

  printf("\n");

}

int main()
{
  int average;
  int min;
  int max;

  int how_many;
  int i;
  int status;
  pthread_t tid1,tid2;

  printf("How many numbers?: ");
  scanf("%d",&how_many);
  int ar[how_many];
  printf("Enter the list of numbers: ");
  for (i=0;i<how_many;i++){
  scanf("%d",&ar[i]);
  }

//for(i=0;i<how_many;i++)
//printf("%d\n",ar[i]);

        pthread_create(&tid1,NULL,thread1(how_many,ar),NULL);
        pthread_create(&tid2,NULL,thread2,NULL);
        pthread_join(tid1,NULL);
        pthread_join(tid2,NULL);
        return 0;
  exit(0);
}

私はちょうど分を印刷することである最初のスレッドを作りました。数ですが、コンパイル時に次のエラーが発生します。

How many numbers?: 3
Enter the list of numbers: 1
2
3
Smallest: 1
Segmentation fault

どうすればセグメントを修正できますか。障害?

4

1 に答える 1

0

pthread_createでしようとしているように引数を渡すことはできません。

次のような構造を作成します。

struct args_t
{
  int length;
  int * array;
}; 

次に、配列と長さで構造を初期化します。

args_t *a = (args_t*)malloc(sizeof(args_t));
//initialize the array directly from your inputs

その後、

pthread_create(&tid1,NULL,thread1,(void*)a);

次に、引数をargs_tにキャストし直します。

お役に立てば幸いです。

于 2013-03-14T13:22:25.400 に答える