How to make C program wait (on Linux)? (I need to use wait with MPI - I need C code please)
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
If you want to wait for a MPI request use MPI_Wait: http://www.manpagez.com/man/3/MPI_Wait/
If you want to wait a certain amount of time use sleep: http://www.manpagez.com/man/3/Sleep/
If you want to wait another process to end use waitpid: http://linux.die.net/man/2/waitpid
If you want to wait a condition variable (multi-threaded programming) use pthread_cond_wait: http://www.opengroup.org/onlinepubs/007908775/xsh/pthread_cond_wait.html
Define what you want to wait for.
回答2:
You can use sleep(seconds)
回答3:
Wait for what exactly ? If you just want a delay use sleep()
.
回答4:
Use MPI_Recv, and use MPI_Send to send a message to the waiting process when it should continue.