我有 2 个线程来创建 thread1 和 thread2。创建线程时:
pthread_create(&thread1, NULL, &function_th1, NULL);
pthread_create(&thread2, NULL, &function_th2, NULL);
thread2 在 thread1 之前启动,我正在寻找在 thread2 之前启动 thread1 的解决方案。
不寻找此解决方案:
pthread_create(&thread2, NULL, &function_th2, NULL);
pthread_create(&thread1, NULL, &function_th1, NULL);