Logo

Programming-Idioms

History of Idiom 45 > diff from v3 to v4

Edit summary for version 4 by :

Version 3

2015-08-19, 15:22:16

Version 4

2015-08-20, 10:49:56

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Imports
#include <unistd.h>
Code
usleep(5000);