home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xtrapv33.zip / extensions / lib / xtrap / sleep.c < prev    next >
C/C++ Source or Header  |  1992-09-14  |  2KB  |  59 lines

  1. /*****************************************************************************
  2. Copyright 1987, 1988, 1989, 1990, 1991, 1992 by 
  3.  
  4.     Digital Equipment Corp., Maynard, MA
  5.  
  6. Permission to use, copy, modify, and distribute this software and its 
  7. documentation for any purpose and without fee is hereby granted, 
  8. provided that the above copyright notice appear in all copies and that
  9. both that copyright notice and this permission notice appear in 
  10. supporting documentation, and that the name of Digital not be
  11. used in advertising or publicity pertaining to distribution of the
  12. software without specific, written prior permission.  
  13.  
  14. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20. SOFTWARE.
  21.  
  22. *****************************************************************************/
  23. /*
  24.  *
  25.  *  CONTRIBUTORS:
  26.  *
  27.  *      Marc Evans
  28.  *      Ken Miller
  29.  *
  30.  */
  31.  
  32. # ifndef vms
  33. #  include "Xos.h"
  34. # endif
  35.  
  36. #if !(defined sun || defined OSF1)
  37. # ifdef __STDC__
  38. void usleep(unsigned long usecs)
  39. # else
  40. void usleep(usecs)
  41.     unsigned long usecs; /* The number of desired micro seconds to sleep */
  42. # endif
  43. # ifndef vms
  44. {
  45.     struct timeval itm;
  46.     itm.tv_sec  = usecs / 1000000L;
  47.     itm.tv_usec = 1000000L * (usecs % 1000000L);
  48.     select(0L,0L,0L,0L,&itm);
  49.     return;
  50. }
  51. # else
  52. {
  53.     float delay = (float)usecs / 1000000.0;
  54.     lib$wait(&delay);
  55.     return;
  56. }
  57. # endif /* vms */
  58. #endif /* sun */
  59.