thread1 と thread2 を作成するための 2 つのスレッドがあります。スレッドを作成する場合:
pthread_create(&thread1, NULL, &function_th1, NULL);
pthread_create(&thread2, NULL, &function_th2, NULL);
スレッド 2 はスレッド 1 の前に起動され、スレッド 2 の前にスレッド 1 を開始するソリューションを探しています。
この解決策を探していません:
pthread_create(&thread2, NULL, &function_th2, NULL);
pthread_create(&thread1, NULL, &function_th1, NULL);