summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coretodget.c
blob: 6ddf86f18b174acbe5771215609c8cc1066c0918 (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
36
37
38
39
40
41
42
43
44
45
46
/**
 *  @file
 *
 *  @brief Returns a Current TOD with Nanosecond Granularity
 *  @ingroup ScoreTODConstants
 */

/*
 *  COPYRIGHT (c) 1989-2008.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  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/score/todimpl.h>
#include <rtems/score/isrlevel.h>

Timestamp_Control *_TOD_Get_with_nanoseconds(
  Timestamp_Control *snapshot,
  const Timestamp_Control *clock
)
{
  TOD_Control      *tod = &_TOD;
  ISR_lock_Context  lock_context;
  Timestamp_Control offset;
  Timestamp_Control now;
  uint32_t          nanoseconds;

  _TOD_Acquire( tod, &lock_context );
    nanoseconds = ( *tod->nanoseconds_since_last_tick )();
    now = *clock;
  _TOD_Release( tod, &lock_context );

  _Timestamp_Set( &offset, 0, nanoseconds );
  _Timestamp_Add_to( &now, &offset );

  *snapshot = now;

  return snapshot;
}