如何使C程序等待(在Linux上)?

前端之家收集整理的这篇文章主要介绍了如何使C程序等待(在Linux上)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何使C程序等待(在Linux上)? (我需要使用MPI等待 – 我需要C代码)

最佳答案
如果要等待MPI请求,请使用MPI_Wait:http://www.manpagez.com/man/3/MPI_Wait/

如果你想等待一段时间,请使用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

定义您想要等待的内容.

原文链接:https://www.f2er.com/linux/440601.html

猜你在找的Linux相关文章