changeset 15331:d214a85acda4

* lib/timespec.h (timespectod): New inline function.
author Paul Eggert <eggert@cs.ucla.edu>
date Thu, 30 Jun 2011 15:06:54 -0700
parents 15ab18909697
children c762e3063952
files ChangeLog lib/timespec.h
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
 2011-06-30  Paul Eggert  <eggert@cs.ucla.edu>
 
-	* lib/timespec.h (timespec_sign): New inline function.
+	* lib/timespec.h (timespec_sign, timespectod): New inline functions.
 
 	pselect: new module
 	* lib/sys_select.in.h: Include <signal.h>, for 'sigset_t'.
--- a/lib/timespec.h
+++ b/lib/timespec.h
@@ -65,6 +65,13 @@
   return a.tv_sec < 0 ? -1 : a.tv_sec || a.tv_nsec;
 }
 
+/* Return an approximation to A, of type 'double'.  */
+static inline double
+timespectod (struct timespec a)
+{
+  return a.tv_sec + a.tv_nsec / 1e9;
+}
+
 void gettime (struct timespec *);
 int settime (struct timespec const *);