summaryrefslogtreecommitdiffstats
path: root/src/pulse/timeval.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-01-27 02:37:13 +0100
committerLennart Poettering <lennart@poettering.net>2009-01-27 02:37:13 +0100
commitdf8ad5d18fe67b93393fb6f81d7598a95d021680 (patch)
treed735df6ad1afeb051d3e368458b01158193bda4d /src/pulse/timeval.h
parent605853057114892c8e6b2e1ef1b5f745d36f88a4 (diff)
add a few missing doxygen comments
Diffstat (limited to 'src/pulse/timeval.h')
-rw-r--r--src/pulse/timeval.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pulse/timeval.h b/src/pulse/timeval.h
index ee398296..2b3faf16 100644
--- a/src/pulse/timeval.h
+++ b/src/pulse/timeval.h
@@ -26,17 +26,29 @@
#include <pulse/cdecl.h>
#include <pulse/gccmacro.h>
#include <pulse/sample.h>
+#include <pulse/version.h>
/** \file
* Utility functions for handling timeval calculations */
PA_C_DECL_BEGIN
+/** The number of milliseconds in a second */
#define PA_MSEC_PER_SEC ((pa_usec_t) 1000ULL)
+
+/** The number of microseconds in a second */
#define PA_USEC_PER_SEC ((pa_usec_t) 1000000ULL)
+
+/** The number of nanoseconds in a second */
#define PA_NSEC_PER_SEC ((pa_usec_t) 1000000000ULL)
+
+/** The number of microseconds in a millisecond */
#define PA_USEC_PER_MSEC ((pa_usec_t) 1000ULL)
+
+/** The number of nanoseconds in a millisecond */
#define PA_NSEC_PER_MSEC ((pa_usec_t) 1000000ULL)
+
+/** The number of nanoseconds in a microsecond */
#define PA_NSEC_PER_USEC ((pa_usec_t) 1000ULL)
struct timeval;