summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/timespecgetasnanoseconds.c
blob: 2f8d17f4a4d6b38a816d87942f9c1a4381a8ea36 (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
/**
 *  @file
 *
 *  @brief Get As Nanoseconds
 *  @ingroup Timespec
 */

/*
 *  COPYRIGHT (c) 2013 Chris Johns <chrisj@rtems.org>
 *
 *  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/score/timespec.h>
#include <rtems/score/todimpl.h>

uint64_t _Timespec_Get_as_nanoseconds(
  const struct timespec *time
)
{
  return ( ((uint64_t) time->tv_sec) * 1000000000ULL ) + time->tv_nsec;
}