Go to main content

man pages section 3: Basic Library Functions

Exit Print View

Updated: July 2017
 
 

usleep(3C)

Name

usleep - suspend execution for interval in microseconds

Synopsis

#include <unistd.h>

int usleep(useconds_t useconds);

Description

The usleep() function suspends the caller from execution for the number of microseconds specified by the useconds argument. The actual suspension time might be less than requested because any caught signal will terminate usleep() following execution of that signal's catching routine. The suspension time might be longer than requested by an arbitrary amount because of the scheduling of other activity in the system.

If the value of useconds is 0, then the call has no effect.

The use of the usleep() function has no effect on the action or blockage of any signal. In a multithreaded process, only the invoking thread is suspended from execution.

Return Values

On completion, usleep() returns 0. There are no error returns.

Errors

No errors are returned.

Usage

The usleep() function is included for its historical usage. The nanosleep(3C) function is preferred over this function.

Attributes

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Interface Stability
Committed
MT-Level
Safe
Standard

See Also

nanosleep(3C), sleep(3C), attributes(5), standards(5)