2019-03-24 01:03:31 +00:00
|
|
|
#ifndef WSFS_ADAPTER_IMPL_TIME_TIMEPOINT_H
|
|
|
|
#define WSFS_ADAPTER_IMPL_TIME_TIMEPOINT_H
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#else
|
|
|
|
#include <cinttypes>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2019-03-24 02:25:29 +00:00
|
|
|
typedef uint64_t timepoint;
|
|
|
|
typedef int64_t timediff;
|
2019-03-24 01:10:03 +00:00
|
|
|
|
2019-03-24 02:25:29 +00:00
|
|
|
extern timepoint timepoint_now(void);
|
2019-02-09 18:02:53 +00:00
|
|
|
|
2019-03-24 02:25:29 +00:00
|
|
|
extern timepoint timepoint_in_msec(
|
|
|
|
timediff value);
|
2019-02-09 18:02:53 +00:00
|
|
|
|
2019-03-24 02:25:29 +00:00
|
|
|
extern bool timepoint_is_elapsed(
|
|
|
|
timepoint timepoint);
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|