osf1 man page for sleep

Query: sleep

OS: osf1

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

sleep(3)						     Library Functions Manual							  sleep(3)

NAME
sleep - Suspends execution for an interval of time
LIBRARY
Standard C Library (libc.a) Threads Library (libpthreads.a)
SYNOPSIS
#include <unistd.h> unsigned int sleep ( unsigned int seconds );
STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: sleep(): XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags.
PARAMETERS
Specifies the number of seconds to sleep.
DESCRIPTION
The sleep() function suspends execution of a process for the interval specified by the seconds parameter. The suspension time may be longer than requested due to the scheduling of other activity by the system. In a multi-threaded environment, the sleep() function is redefined so that only the calling thread is suspended.
RETURN VALUES
If the sleep() function returns because the requested time has elapsed, it returns 0 (zero). If the sleep() function returns because it caught a signal, the function returns the number of seconds remaining in the suspension.
RELATED INFORMATION
Commands: wall(1), shutdown(8) sleep(1) Functions: sigaction(2), alarm(3), pause(3) Standards: standards(5) delim off sleep(3)
Related Man Pages
sleep(3c) - opensolaris
sleep(3c) - sunos
sleep(1) - osf1
usleep(3) - osf1
sleep(1) - sunos
Similar Topics in the Unix Linux Community
Anything smaller than sleep 1
search for a file, if not found sleep and repeat it for 3 hrs
script to check for existence of file (or else sleep for x time)
How to sleep and wake a thread???
Sleep Until Query