blob: d1dbccb1fc4d867bc20f671ef9fbaf508a5f5fda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# TSLEEP -- Suspend execution of the calling task for the specified number
# of seconds.
procedure tsleep (seconds)
int seconds
begin
if (seconds > 0)
call zwmsec (seconds * 1000)
end
|