summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/timespecgetasnanoseconds.c
blob: 743546498658c8cbf7b2401bd84468422b790388 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                           
                    





                                 

                                      

 
                                                                       
 
/**
 *  @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.
 */

#ifdef 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;
}