最佳答案
如果要等待MPI请求,请使用MPI_Wait:http://www.manpagez.com/man/3/MPI_Wait/
原文链接:https://www.f2er.com/linux/440601.html如果你想等待一段时间,请使用sleep:http://www.manpagez.com/man/3/Sleep/
如果要等待另一个进程结束使用waitpid:http://linux.die.net/man/2/waitpid
如果要等待条件变量(多线程编程),请使用pthread_cond_wait:http://www.opengroup.org/onlinepubs/007908775/xsh/pthread_cond_wait.html
定义您想要等待的内容.