Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
sleep
`sleep(EXPR)'
`sleep EXPR'
`sleep'
EXPR
秒の間(
EXPR
を省略すると、永久に)スクリプトを停止する。 プロセスに
SIGALRM
を送ると interrupt できるだろう。 実際に停止した時間を返す。 おそらく
alarm
と
sleep
を混在させることはできないだろう。
sleep()
は
alarm()
を用いてインプリメントされている場合が 多いからだ。
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.