Intel® Fortran Compiler 16.0 User and Reference Guide
Portability Subroutine: Delays execution of the program for a specified duration.
USE IFPORT
CALL SLEEPQQ (duration)
duration |
(Input) INTEGER(4). Number of milliseconds the program is to sleep (delay program execution). |
USE IFPORT INTEGER(4) delay, freq, duration delay = 2000 freq = 4000 duration = 1000 CALL SLEEPQQ(delay) CALL BEEPQQ(freq, duration) END