私は学習pthread
と私はいくつかの質問があります。ここでlinuxでpthreadを使用する場合、pthread_joinは必須ですか?
が私のコードです:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#define NUM_THREADS 10
using namespace std;
void *PrintHello(void *threadid)
{
int* tid;
tid = (int*)threadid;
for(int i = 0; i < 5; i++){
printf("Hello, World (thread %d)\n", *tid);
}
pthread_exit(NULL);
}
int main (int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
int t;
int* valPt[NUM_THREADS];
for(t=0; t < NUM_THREADS; t++){
printf("In main: creating thread %d\n", t);
valPt[t] = new int();
*valPt[t] = t;
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)valPt[t]);
if (rc){
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}
/* Last thing that main() should do */
pthread_exit(NULL);
}
コードがうまく実行され、私はpthread_join
を呼び出すことはありません。だから私は知りたい、pthread_join
が必要ですか?
もう一つの問題は、次のとおりです。
に等しいvalPt[t] = new int();
*valPt[t] = t;
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)valPt[t]);
:
rc = pthread_create(&threads[t], NULL, PrintHello, &i);
あなたの2番目の質問に対する答え:ああ、それらの2つは完全に完全に違って見えます。私の推奨は 'reinterpret_cast(i)'です。なぜならこれはC++であり、質問にタグが付いているのでCではないからです。 –
ここに、 'pthread_create'に値を渡す議論があります:http://stackoverflow.com/questions/8487380/how-to-cast-an-integer-to-void-pointer/8487738#8487738 –
スレッドは"解放されました "あなたがそれに参加したとき、またはそれが分離されているときに終了したとき。それが分離されておらず、あなたがそれに加わらなければ、あなたはそれを漏らしています。 – immibis