*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->FreeBSD man pages -> nanosleep (2)              
Title
Content
Arch
Section
 

NANOSLEEP(2)

Contents


NAME    [Toc]    [Back]

     nanosleep -- suspend process execution for an interval measured in
     nanoseconds

LIBRARY    [Toc]    [Back]

     Standard C Library (libc, -lc)

SYNOPSIS    [Toc]    [Back]

     #include <time.h>

     int
     nanosleep(const struct timespec *rqtp, struct timespec *rmtp);

DESCRIPTION    [Toc]    [Back]

     The nanosleep() system call causes the process to sleep for the specified
     time.  An unmasked signal will cause it to terminate the sleep early,
     regardless of the SA_RESTART value on the interrupting signal.

RETURN VALUES    [Toc]    [Back]

     If the nanosleep() system call returns because the requested time has
     elapsed, the value returned will be zero.

     If the nanosleep() system call returns due to the delivery of a signal,
     the value returned will be -1, and the global variable errno will be set
     to indicate the interruption.  If rmtp is non-NULL, the timespec structure
 it references is updated to contain the unslept amount (the request
     time minus the time actually slept).

ERRORS    [Toc]    [Back]

     The nanosleep() system call fails if:

     [EFAULT]		Either rqtp or rmtp points to memory that is not a
			valid part of the process address space.

     [EINTR]		The nanosleep() system call was interrupted by the
			delivery of a signal.

     [EINVAL]		The rqtp argument specified a nanosecond value less
			than zero or greater than or equal to 1000 million.

     [ENOSYS]		The nanosleep() system call is not supported by this
			implementation.

SEE ALSO    [Toc]    [Back]

      
      
     sigsuspend(2), sleep(3)

STANDARDS    [Toc]    [Back]

     The nanosleep() system call conforms to IEEE Std 1003.1b-1993
     (``POSIX.1'').


FreeBSD 5.2.1			April 17, 1997			 FreeBSD 5.2.1
[ Back ]
 Similar pages
Name OS Title
usleep FreeBSD suspend process execution for an interval measured in microseconds
sleep FreeBSD suspend process execution for an interval measured in seconds
sleep NetBSD suspend process execution for interval of seconds
sleep OpenBSD suspend process execution for interval of seconds
sleep HP-UX suspend execution for an interval
sleep IRIX suspend execution for interval
usleep IRIX suspend execution for an interval
sleep IRIX suspend execution for an interval
usleep HP-UX suspend execution for an interval
sleep Tru64 Suspend execution for an interval of time
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service