1

スレッドを学びます。スレッドが関数の外に出た後に終了することを読みました(パラメーターとして pthread_create 関数に渡されます)。そのため、ループ内にスレッドを作成し、それらが実行され、その後終了します。(長いコードで申し訳ありません)

しかし、関数 pthread_create を呼び出すと、新しいスレッドは同じ ID を取得します。なんで?

 struct data {
   FILE *f;
 };

void *read_line_of_file(void *gdata) {
  pthread_mutex_lock(&g_count_mutex); // only one thread can work with file, 
                                   //doing so we block other threads from accessing it
  data *ldata = (data *) gdata;
  char line[80];
  int ret_val  =fscanf(ldata->f,"%s",line);

  pthread_mutex_unlock(&g_count_mutex); // allow other threads to access it

  if (ret_val != EOF)
    printf("%s   %lu\n  ", line, pthread_self());

 // some time consuming operations, while they are being executed by one thread,
 // other  threads are not influenced by it (if there are executed on different cores)
  volatile int a=8;
  for (int i=0;i <10000;i++ )
  for (int i=0;i <10000;i++ ) {
     a=a/7+i;
  }

  if (ret_val == EOF)     // here thread ends
     pthread_exit((void *)1);
   pthread_exit((void *)0);
 }


int main() {
  int kNumber_of_threads=3, val=0;

  pthread_t threads[kNumber_of_threads];
  int ret_val_from_thread=0;

  data  mydata;

  mydata.f = fopen("data.txt","r");
  if ( mydata.f == NULL) {
    printf("file is not found\n");
    return 0;
  }

  for( ; val != 1 ;) {

    // THIS IS THAT PLACE, IDs are the same (according to the number of processes),
    // I expected them to be changing..
    for(int i=0; i<kNumber_of_threads; i++) {
      pthread_create(&threads[i],NULL,read_line_of_file, &mydata);
    }

    for(int i=0; i<kNumber_of_threads; i++) {
      pthread_join(threads[i], (void **) &ret_val_from_thread);
      if (ret_val_from_thread != 0)
        val = ret_val_from_thread;
    }

    printf(" next  %d\n",val);
  }
  printf("work is finished\n");

  fclose(mydata.f);
  return 0;
}

その結果、スレッドの id が変更されていないことがわかります。

ここに画像の説明を入力

本当に新しいスレッドが作成されているのだろうか?

前もって感謝します!

4

1 に答える 1

7

スレッド ID は、現在実行中のスレッド間でのみ異なることが保証されています。スレッドを破棄して新しいスレッドを作成すると、以前に使用したスレッド ID で作成される可能性があります。

于 2013-03-30T21:20:04.023 に答える