开发者

How to make C program wait (on Linux)?

开发者 https://www.devze.com 2022-12-25 17:01 出处:网络
How to make C program wait (on Lin开发者_运维知识库ux)? (I need to use wait with MPI - I need C code please)If you want to wait for a MPI request use MPI_Wait: http://www.manpagez.com/man/3/MPI_Wait/

How to make C program wait (on Lin开发者_运维知识库ux)? (I need to use wait with MPI - I need C code please)


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.


You can use sleep(seconds)


Wait for what exactly ? If you just want a delay use sleep().


Use MPI_Recv, and use MPI_Send to send a message to the waiting process when it should continue.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号