0

Pthreads 関連の質問。

2 つの条件変数を動的に作成したいとします。

これは仕事をしますか:

pthread_cond_t * a = new pthread_cond_t();
pthread_cond_t * b = new pthread_cond_t();

pthread_cond_init(&a , NULL);
pthread_cond_init(&b , NULL);

それとも同じ条件変数ですか?

4

1 に答える 1