Jump to content

SpSleep: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
m Ak120 moved page OS2 API:SPUTILS:spSleep to SpSleep
 
(2 intermediate revisions by 2 users not shown)
Line 12: Line 12:
  CALL spSleep ms
  CALL spSleep ms


[[Category:The OS/2 API Project]]
[[Category:SpUtils]]

Latest revision as of 23:53, 26 February 2017

Suspends the current thread for a specified time interval.

Syntax: CALL spSleep msec

Parameter: msec – time to suspend in milliseconds

Example Code:

/* msleep.cmd (spUtils Example Code) */
/* Waits the given number of milliseconds */
CALL RXFUNCADD 'spSleep','spUtils','spSleep'
PARSE ARG ms rest
CALL spSleep ms