summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_twait.c
blob: 1b0fd1ea7563c65aa3040cbe7e7d5c612c9c2c6d (plain)
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
65
66
67
68
69
70
71
72
73
74
75
/* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for	*
*  details. If they are missing then this copy is in violation of       *
*  the copyright conditions.	                                        */

/*
**	lib_twait.c
**
**	The routine timed_wait().
**
*/

#include <string.h>
#include <sys/types.h>		/* some systems can't live without this */
#include <sys/time.h>
#include <unistd.h>
#if defined(SYS_SELECT)
#include <sys/select.h>
#endif
#include "curses.priv.h"

#if defined(NOUSLEEP)
void usleep(unsigned int usec)
{
struct timeval tval;

	tval.tv_sec = usec / 1000000;
	tval.tv_usec = usec % 1000000;
	select(0, NULL, NULL, NULL, &tval);

}
#endif

int timed_wait(int fd, int wait, int *timeleft)
{
int result;
struct timeval timeout;
static fd_set set;
#ifndef GOOD_SELECT
struct timeval starttime, returntime;

	 gettimeofday(&starttime, NULL);
#endif

	 FD_ZERO(&set);
	 FD_SET(fd, &set);

	 /* the units of wait are milliseconds */
	 timeout.tv_sec = wait / 1000;
	 timeout.tv_usec = (wait % 1000) * 1000;

	 T(("start twait: sec = %d, usec = %d", timeout.tv_sec, timeout.tv_usec));

	 result = select(fd+1, &set, NULL, NULL, &timeout);

#ifndef GOOD_SELECT
	 gettimeofday(&returntime, NULL);
	 timeout.tv_sec -= (returntime.tv_sec - starttime.tv_sec);
	 timeout.tv_usec -= (returntime.tv_usec - starttime.tv_usec);
	 if (timeout.tv_usec < 0 && timeout.tv_sec > 0) {
		timeout.tv_sec--;
		timeout.tv_usec += 1000000;
	 }
	 if (timeout.tv_sec < 0)
		timeout.tv_sec = timeout.tv_usec = 0;
#endif

	 /* return approximate time left on the timeout, in milliseconds */
	 if (timeleft)
		*timeleft = (timeout.tv_sec * 1000) + (timeout.tv_usec / 1000);

	 T(("end twait: returned %d, sec = %d, usec = %d (%d msec)",
		 result, timeout.tv_sec, timeout.tv_usec, *timeleft));

	 return(result);
}
OpenPOWER on IntegriCloud