我有2個線程來創建thread1和thread2。當創建線程:多線程啓動安排
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);
你可以發佈更多的背景,爲什麼你要對線程1線程2前推出? – Jay