diff options
author | Gerrit Pape <pape@smarden.org> | 2014-08-11 17:41:10 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2014-08-11 17:41:10 +0000 |
commit | a1242495cf1dff8bea86b9ccb84f493175865bf4 (patch) | |
tree | 888997bb0c7ceb6fd66922d563b159df0f99ac7d /runit-2.1.2/src/taia.h | |
parent | d7582f1467066d8b638eac22bef6d4cd9aaf0764 (diff) | |
parent | 008f4cad46f2e2454ee8cb759e43c996521b0473 (diff) | |
download | runit-a1242495cf1dff8bea86b9ccb84f493175865bf4.tar.gz runit-a1242495cf1dff8bea86b9ccb84f493175865bf4.tar.xz runit-a1242495cf1dff8bea86b9ccb84f493175865bf4.zip |
Merge tag 'upstream-2.1.2' into debian-sid
tag upstream-2.1.2
Diffstat (limited to 'runit-2.1.2/src/taia.h')
-rw-r--r-- | runit-2.1.2/src/taia.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/runit-2.1.2/src/taia.h b/runit-2.1.2/src/taia.h new file mode 100644 index 0000000..3882d1d --- /dev/null +++ b/runit-2.1.2/src/taia.h @@ -0,0 +1,36 @@ +/* Public domain. */ + +#ifndef TAIA_H +#define TAIA_H + +#include "tai.h" + +struct taia { + struct tai sec; + unsigned long nano; /* 0...999999999 */ + unsigned long atto; /* 0...999999999 */ +} ; + +extern void taia_tai(const struct taia *,struct tai *); + +extern void taia_now(struct taia *); + +extern double taia_approx(const struct taia *); +extern double taia_frac(const struct taia *); + +extern void taia_add(struct taia *,const struct taia *,const struct taia *); +extern void taia_addsec(struct taia *,const struct taia *,int); +extern void taia_sub(struct taia *,const struct taia *,const struct taia *); +extern void taia_half(struct taia *,const struct taia *); +extern int taia_less(const struct taia *,const struct taia *); + +#define TAIA_PACK 16 +extern void taia_pack(char *,const struct taia *); +extern void taia_unpack(const char *,struct taia *); + +#define TAIA_FMTFRAC 19 +extern unsigned int taia_fmtfrac(char *,const struct taia *); + +extern void taia_uint(struct taia *,unsigned int); + +#endif |