Imported Upstream version 3.0
[debian/gnuradio] / usrp / host / misc / usleep.c
1 /* Copyright (C) 1992 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
18
19 #include <config.h>
20
21 #ifndef HAVE_USLEEP
22
23 #include <sys/types.h>
24 #include <sys/time.h>
25
26 #ifdef HAVE_SYS_SELECT_H
27 # include <sys/select.h>
28 #endif
29
30 #ifdef HAVE_WINDOWS_H
31 #include <windows.h>
32 #endif
33 #ifdef HAVE_WINBASE_H
34 # include <winbase.h>
35 #endif
36
37 #ifdef apollo
38 # include <apollo/base.h>
39 # include <apollo/time.h>
40   static time_$clock_t DomainTime100mS =
41     {
42         0, 100000/4
43     };
44   static status_$t DomainStatus;
45 #endif
46
47 /* Sleep USECONDS microseconds, or until a previously set timer goes off.  */
48 int
49 usleep (unsigned long useconds)
50 {
51 #ifdef apollo
52   /* The usleep function does not work under the SYS5.3 environment.
53      Use the Domain/OS time_$wait call instead. */
54   time_$wait (time_$relative, DomainTime100mS, &DomainStatus);
55 #elif defined(HAVE_SSLEEP)      /* Win32 */
56   Sleep( useconds/1000 );
57 #else
58   struct timeval delay;
59
60   delay.tv_sec = 0;
61   delay.tv_usec = useconds;
62   select (0, 0, 0, 0, &delay);
63 #endif
64   return 0;
65 }
66
67 #endif /* !HAVE_USLEEP */