Btw are you pretending to sleep the process or kill it? because the term "suspend" its not exactlier.
If you just wanna sleep it and be in standbye use this
Quote:
#include <unistd.h>
unsigned int microseconds;
...
usleep(microseconds);
|
Now make a loop until you click some key or reach some condition.
Hope it helps