diff options
Diffstat (limited to 'db/common/db_clock.c')
-rw-r--r-- | db/common/db_clock.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/db/common/db_clock.c b/db/common/db_clock.c new file mode 100644 index 000000000..190ee5924 --- /dev/null +++ b/db/common/db_clock.c @@ -0,0 +1,31 @@ +/*- + * See the file LICENSE for redistribution information. + * + * Copyright (c) 2005-2006 + * Oracle Corporation. All rights reserved. + * + * $Id: db_clock.c,v 1.5 2006/08/24 14:45:11 bostic Exp $ + */ + +#include "db_config.h" + +#include "db_int.h" + +/* + * __db_difftime -- + * + * Compute the difference in seconds and microseconds of two timers. + * + * PUBLIC: void __db_difftime __P((u_int32_t, u_int32_t, u_int32_t, u_int32_t, + * PUBLIC: u_int32_t *, u_int32_t *)); + */ +void +__db_difftime(ssec, esec, susec, eusec, secp, usecp) + u_int32_t ssec, esec, susec, eusec, *secp, *usecp; +{ + if ((*secp = esec - ssec) != 0 && eusec < susec) { + (*secp)--; + eusec += 1000000; + } + *usecp = eusec - susec; +} |