summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/clockgetuptimenanoseconds.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-12-24 16:38:42 +1100
committerChris Johns <chrisj@rtems.org>2013-12-24 16:46:19 +1100
commit2d1bdc8f797db5ab6e3ba6945befaf73d9062798 (patch)
treee8a3eecc64c589a9d0495790e09092dc572f36cf /cpukit/rtems/src/clockgetuptimenanoseconds.c
parentmips/shared: added new doxygen (diff)
downloadrtems-2d1bdc8f797db5ab6e3ba6945befaf73d9062798.tar.bz2
cpukit/rtems: Add rtems_clock_get_uptime_nanoseconds to the RTEMS API.
Add Timestamp support in the score to return a timestamp in nanoseconds. Add a test. Update the RTEMS API documentation.
Diffstat (limited to 'cpukit/rtems/src/clockgetuptimenanoseconds.c')
-rw-r--r--cpukit/rtems/src/clockgetuptimenanoseconds.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/cpukit/rtems/src/clockgetuptimenanoseconds.c b/cpukit/rtems/src/clockgetuptimenanoseconds.c
new file mode 100644
index 0000000000..c07a4305db
--- /dev/null
+++ b/cpukit/rtems/src/clockgetuptimenanoseconds.c
@@ -0,0 +1,35 @@
+/**
+ * @file
+ *
+ * @brief Returns the system uptime in seconds.
+ * @ingroup ClassicClock Clocks
+ */
+
+/*
+ * Copyright (c) 2013 Chris Johns <chrisj@rtems.org>. All rights reserved.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#if HAVE_CONFIG_H
+ #include "config.h"
+#endif
+
+#include <rtems/rtems/clock.h>
+#include <rtems/score/todimpl.h>
+
+uint64_t rtems_clock_get_uptime_nanoseconds( void )
+{
+ Timestamp_Control snapshot_as_timestamp;
+ uint32_t nanoseconds;
+ ISR_Level level;
+
+ _TOD_Acquire( &_TOD, level );
+ snapshot_as_timestamp = _TOD.uptime;
+ nanoseconds = ( *_TOD.nanoseconds_since_last_tick )();
+ _TOD_Release( &_TOD, level );
+
+ return _Timestamp_Get_As_nanoseconds( &snapshot_as_timestamp, nanoseconds );
+}