aboutsummaryrefslogtreecommitdiffstats
path: root/doubletotimeval.c
blob: 2977f420b12f1d28db6d86e1e249c60cb84fa8a7 (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


void
libsimple_doubletotimeval(struct timeval *tv, double d)
{
	long long int d_integer = (long long int)d;
	double ns = (double)d_integer;
	long int nsi;
	ns = d - ns;
	ns *= (double)1000000L;
	nsi = (long int)ns;
	if (2 * (ns - (double)nsi) >= 1) {
		nsi += 1;
		if (nsi == 1000000L) {
			nsi = 0;
			d += 1;
		}
	} else if (2 * (ns - (double)nsi) <= -1) {
		nsi -= 1;
		if (nsi == -1000000L) {
			nsi = 0;
			d -= 1;
		}
	}
	tv->tv_sec = (time_t)d;
	tv->tv_usec = nsi;
	if (tv->tv_usec < 0) {
		tv->tv_sec -= 1;
		tv->tv_usec += 1000000L;
	}
}


#else
#include "test.h"

int
main(void)
{
	return 0; /* Tested in libsimple.c */
}

#endif