Sleep.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: Sleep.3,v 1.2 1998/09/14 18:39:50 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tcl_Sleep 3 7.5 Tcl "Tcl Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tcl_Sleep - delay execution for a given number of milliseconds
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tcl.h>fR
  18. .sp
  19. fBTcl_SleepfR(fImsfR)
  20. .SH ARGUMENTS
  21. .AP int ms in
  22. Number of milliseconds to sleep.
  23. .BE
  24. .SH DESCRIPTION
  25. .PP
  26. This procedure delays the calling process by the number of
  27. milliseconds given by the fImsfR parameter and returns
  28. after that time has elapsed.  It is typically used for things
  29. like flashing a button, where the delay is short and the
  30. application needn't do anything while it waits.  For longer
  31. delays where the application needs to respond to other events
  32. during the delay, the procedure fBTcl_CreateTimerHandlerfR
  33. should be used instead of fBTcl_SleepfR.
  34. .SH KEYWORDS
  35. sleep, time, wait