mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
added forgotten file
This commit is contained in:
parent
728177f25d
commit
5ce7dd290a
35
nc_test4/tst_utils.c
Normal file
35
nc_test4/tst_utils.c
Normal file
@ -0,0 +1,35 @@
|
||||
/** \internal
|
||||
\file
|
||||
Utility functions for tests. */
|
||||
|
||||
#include <nc_tests.h>
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
/** Subtract the `struct timeval' values X and Y, storing the result in
|
||||
RESULT. Return 1 if the difference is negative, otherwise 0. This
|
||||
function from the GNU documentation. */
|
||||
int
|
||||
nc4_timeval_subtract (result, x, y)
|
||||
struct timeval *result, *x, *y;
|
||||
{
|
||||
/* Perform the carry for the later subtraction by updating Y. */
|
||||
if (x->tv_usec < y->tv_usec) {
|
||||
int nsec = (y->tv_usec - x->tv_usec) / MILLION + 1;
|
||||
y->tv_usec -= MILLION * nsec;
|
||||
y->tv_sec += nsec;
|
||||
}
|
||||
if (x->tv_usec - y->tv_usec > MILLION) {
|
||||
int nsec = (x->tv_usec - y->tv_usec) / MILLION;
|
||||
y->tv_usec += MILLION * nsec;
|
||||
y->tv_sec -= nsec;
|
||||
}
|
||||
|
||||
/* Compute the time remaining to wait.
|
||||
`tv_usec' is certainly positive. */
|
||||
result->tv_sec = x->tv_sec - y->tv_sec;
|
||||
result->tv_usec = x->tv_usec - y->tv_usec;
|
||||
|
||||
/* Return 1 if result is negative. */
|
||||
return x->tv_sec < y->tv_sec;
|
||||
}
|
Loading…
Reference in New Issue
Block a user