summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/clockgetuptimenanoseconds.c
blob: 0310e592e98dd9311a8d2bf4ac13d169592fc979 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.org/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_lock_Context   lock_context;

  _TOD_Acquire( &_TOD, &lock_context );
    snapshot_as_timestamp = _TOD.uptime;
    nanoseconds = ( *_TOD.nanoseconds_since_last_tick )();
  _TOD_Release( &_TOD, &lock_context );

  return _Timestamp_Get_As_nanoseconds( &snapshot_as_timestamp, nanoseconds );
}