File: usleep.c

package info (click to toggle)
unicode-screensaver 0.5.2-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,932 kB
  • sloc: sh: 4,154; ansic: 2,090; xml: 75; makefile: 47
file content (64 lines) | stat: -rw-r--r-- 1,715 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* xscreensaver, Copyright (c) 1992, 1996, 1997, 2003
 *  Jamie Zawinski <jwz@jwz.org>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation.  No representations are made about the suitability of this
 * software for any purpose.  It is provided "as is" without express or 
 * implied warranty.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#else  /* !HAVE_CONFIG_H */
# ifndef NO_SELECT
#  define HAVE_SELECT
# endif
#endif /* !HAVE_CONFIG_H */

#ifdef __STDC__
# include <stdlib.h>
#endif

#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif

#if defined(VMS)
# include <descrip.h>
# include <stdio.h>
# include <lib$routines.h>
#elif defined(HAVE_SELECT)
# include <sys/time.h>		/* for struct timeval */
#endif


#ifdef __SCREENHACK_USLEEP_H__
ERROR, do not include that here
#endif

extern void screenhack_usleep (unsigned long usecs); /* suppress warning */

void
screenhack_usleep (unsigned long usecs)
{
# if defined(VMS)
  float seconds = ((float) usecs)/1000000.0;
  unsigned long int statvms = lib$wait(&seconds);

#elif defined(HAVE_SELECT)
  /* usleep() doesn't exist everywhere, and select() is faster anyway. */
  struct timeval tv;
  tv.tv_sec  = usecs / 1000000L;
  tv.tv_usec = usecs % 1000000L;
  (void) select (0, 0, 0, 0, &tv);

#else /* !VMS && !HAVE_SELECT */
  /* If you don't have select() or usleep(), I guess you lose...
     Maybe you have napms() instead?  Let me know. */
  usleep (usecs);

#endif /* !VMS && !HAVE_SELECT */
}