aboutsummaryrefslogblamecommitdiffstats
path: root/doubletotimespec.c
blob: f993f049e07ee19ad099fab25508e40b663c63f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                         
                   
            


    
                                                         
 

                                                   









                                          





                                                  


                               



                                           
 











                                             
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


void
libsimple_doubletotimespec(struct timespec *ts, double d)
{
	long long int d_integer = (long long int)d;
	double ns = (double)d_integer;
	long int nsi;
	ns = d - ns;
	ns *= (double)1000000000L;
	nsi = (long int)ns;
	if (2 * (ns - (double)nsi) >= 1) {
		nsi += 1;
		if (nsi == 1000000000L) {
			nsi = 0;
			d += 1;
		}
	} else if (2 * (ns - (double)nsi) <= -1) {
		nsi -= 1;
		if (nsi == -1000000000L) {
			nsi = 0;
			d -= 1;
		}
	}
	ts->tv_sec = (time_t)d;
	ts->tv_nsec = nsi;
	if (ts->tv_nsec < 0) {
		ts->tv_sec -= 1;
		ts->tv_nsec += 1000000000L;
	}
}


#else
#include "test.h"

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

#endif