[Previous] [Contents] [Next]

nap()

Sleep for ms milliseconds

Synopsis:

#include <unistd.h>

int nap( int ms);

Library:

libc

Description:

The nap() routine is used to sleep for ms milliseconds.

Classification:

Unix

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

delay(), napms()


[Previous] [Contents] [Next]