ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. This manual page is associated with the Mac OS X developer tools. The software or headers described may not be present on your Mac OS X installation until you install the developer tools package. This package is available on your Mac OS X installation DVD, and the latest versions can be downloaded from developer.apple.com. For more information about the manual page format, see the manual page for manpages(5). |
Tcl_Sleep(3) Tcl Library Procedures Tcl_Sleep(3) ____________________________________________________________________________________________________________ NAME Tcl_Sleep - delay execution for a given number of milliseconds SYNOPSIS #include <tcl.h> Tcl_Sleep(ms) ARGUMENTS int ms (in) Number of milliseconds to sleep. ____________________________________________________________________________________________________________ DESCRIPTION This procedure delays the calling process by the number of milliseconds given by the ms parameter and returns after that time has elapsed. It is typically used for things like flashing a button, where the delay is short and the application needn't do anything while it waits. For longer delays where the application needs to respond to other events during the delay, the procedure Tcl_CreateTimerHan-dler Tcl_CreateTimerHandler dler should be used instead of Tcl_Sleep. KEYWORDS sleep, time, wait Tcl 7.5 Tcl_Sleep(3) |
|