File: sleep.Rd

package info (click to toggle)
r-cran-randomfieldsutils 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,956 kB
  • sloc: ansic: 7,119; cpp: 6,437; fortran: 3,403; makefile: 7; sh: 1
file content (27 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
\name{sleep.milli}
\alias{sleep.milli}
\alias{sleep.micro}
\alias{sleep}
\title{Sleep}
\description{
  Process sleeps for a given amount of time
}
\usage{
sleep.milli(n)
sleep.micro(n)
}
\arguments{
  \item{n}{integer. sleeping time units}
}
\value{
  No value is returned.
}
\me

\examples{
## next command waits half a second before returning
sleep.milli(500)
}

\keyword{utilities}
\keyword{misc}