[lib] Remove unused owl_timestamp_is_null()

This commit is contained in:
Matteo Cypriani 2013-06-03 14:44:25 -04:00
parent abce1f985e
commit 410038f38c
3 changed files with 0 additions and 16 deletions

View File

@ -89,14 +89,6 @@ Work to do in OwlPS
= libowlps =
- Currently unused functions:
- owl_timestamp_is_null()
= Aggregator =
- Flush the requests' list when exiting.

View File

@ -230,13 +230,6 @@ bool owl_timestamp_equals(const owl_timestamp *const d1,
}
bool owl_timestamp_is_null(const owl_timestamp *const d)
{
assert(d) ;
return d->tv_sec == 0 && d->tv_nsec == 0 ;
}
/*
* Converts a owl_timestamp date value into milliseconds.
*/

View File

@ -240,7 +240,6 @@ void owl_timeval_to_timestamp(const struct timeval *const src,
owl_timestamp *const dst) ;
bool owl_timestamp_equals(const owl_timestamp *const d1,
const owl_timestamp *const d2) ;
bool owl_timestamp_is_null(const owl_timestamp *const d) ;
uint64_t owl_timestamp_to_ms(const owl_timestamp *const d) ;
void owl_timestamp_to_string(const owl_timestamp *const src,
char *const dst) ;