Blame man3/usleep.3

Packit 7cfc04
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" References consulted:
Packit 7cfc04
.\"     Linux libc source code
Packit 7cfc04
.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
Packit 7cfc04
.\"     386BSD man pages
Packit 7cfc04
.\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
Packit 7cfc04
.\" Modified 2001-04-01 by aeb
Packit 7cfc04
.\" Modified 2003-07-23 by aeb
Packit 7cfc04
.\"
Packit 7cfc04
.TH USLEEP 3  2017-09-15 "" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
usleep \- suspend execution for microsecond intervals
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B "#include <unistd.h>"
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int usleep(useconds_t " usec );
Packit 7cfc04
.fi
Packit 7cfc04
.PP
Packit 7cfc04
.in -4n
Packit 7cfc04
Feature Test Macro Requirements for glibc (see
Packit 7cfc04
.BR feature_test_macros (7)):
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
.BR usleep ():
Packit 7cfc04
.ad l
Packit 7cfc04
.RS 4
Packit 7cfc04
.PD 0
Packit 7cfc04
.TP 4
Packit 7cfc04
Since glibc 2.12:
Packit 7cfc04
.nf
Packit 7cfc04
(_XOPEN_SOURCE\ >=\ 500) && ! (_POSIX_C_SOURCE\ >=\ 200809L)
Packit 7cfc04
    || /* Glibc since 2.19: */ _DEFAULT_SOURCE
Packit 7cfc04
    || /* Glibc versions <= 2.19: */ _BSD_SOURCE
Packit 7cfc04
.TP 4
Packit 7cfc04
.fi
Packit 7cfc04
Before glibc 2.12:
Packit 7cfc04
_BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500
Packit 7cfc04
.\"    || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
Packit 7cfc04
.PD
Packit 7cfc04
.RE
Packit 7cfc04
.ad b
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
.BR usleep ()
Packit 7cfc04
function suspends execution of the calling thread for
Packit 7cfc04
(at least) \fIusec\fP microseconds.
Packit 7cfc04
The sleep may be lengthened slightly
Packit 7cfc04
by any system activity or by the time spent processing the call or by the
Packit 7cfc04
granularity of system timers.
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The
Packit 7cfc04
.BR usleep ()
Packit 7cfc04
function returns 0 on success.
Packit 7cfc04
On error, \-1 is returned, with
Packit 7cfc04
.I errno
Packit 7cfc04
set to indicate the cause of the error.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
.TP
Packit 7cfc04
.B EINTR
Packit 7cfc04
Interrupted by a signal; see
Packit 7cfc04
.BR signal (7).
Packit 7cfc04
.TP
Packit 7cfc04
.B EINVAL
Packit 7cfc04
\fIusec\fP is greater than or equal to 1000000.
Packit 7cfc04
(On systems where that is considered an error.)
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lb lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR usleep ()
Packit 7cfc04
T}	Thread safety	MT-Safe
Packit 7cfc04
.TE
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
4.3BSD, POSIX.1-2001.
Packit 7cfc04
POSIX.1-2001 declares this function obsolete; use
Packit 7cfc04
.BR nanosleep (2)
Packit 7cfc04
instead.
Packit 7cfc04
POSIX.1-2008 removes the specification of
Packit 7cfc04
.BR usleep ().
Packit 7cfc04
.PP
Packit 7cfc04
On the original BSD implementation,
Packit 7cfc04
and in glibc before version 2.2.2, the return type of this function is
Packit 7cfc04
.IR void .
Packit 7cfc04
The POSIX version returns
Packit 7cfc04
.IR int ,
Packit 7cfc04
and this is also the prototype used since glibc 2.2.2.
Packit 7cfc04
.PP
Packit 7cfc04
Only the
Packit 7cfc04
.B EINVAL
Packit 7cfc04
error return is documented by SUSv2 and POSIX.1-2001.
Packit 7cfc04
.SH NOTES
Packit 7cfc04
The type
Packit 7cfc04
.I useconds_t
Packit 7cfc04
is an unsigned integer type capable of holding integers
Packit 7cfc04
in the range [0,1000000].
Packit 7cfc04
Programs will be more portable
Packit 7cfc04
if they never mention this type explicitly.
Packit 7cfc04
Use
Packit 7cfc04
.PP
Packit 7cfc04
.in +4n
Packit 7cfc04
.EX
Packit 7cfc04
#include <unistd.h>
Packit 7cfc04
\&...
Packit 7cfc04
    unsigned int usecs;
Packit 7cfc04
\&...
Packit 7cfc04
    usleep(usecs);
Packit 7cfc04
.EE
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
The interaction of this function with the
Packit 7cfc04
.B SIGALRM
Packit 7cfc04
signal, and with other timer functions such as
Packit 7cfc04
.BR alarm (2),
Packit 7cfc04
.BR sleep (3),
Packit 7cfc04
.BR nanosleep (2),
Packit 7cfc04
.BR setitimer (2),
Packit 7cfc04
.BR timer_create (2),
Packit 7cfc04
.BR timer_delete (2),
Packit 7cfc04
.BR timer_getoverrun (2),
Packit 7cfc04
.BR timer_gettime (2),
Packit 7cfc04
.BR timer_settime (2),
Packit 7cfc04
.BR ualarm (3)
Packit 7cfc04
is unspecified.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
BR alarm (2),
Packit 7cfc04
.BR getitimer (2),
Packit 7cfc04
.BR nanosleep (2),
Packit 7cfc04
.BR select (2),
Packit 7cfc04
.BR setitimer (2),
Packit 7cfc04
.BR sleep (3),
Packit 7cfc04
.BR ualarm (3),
Packit 7cfc04
.BR time (7)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.