57static inline void rtems_bsd_bintime(
struct bintime *bt )
59 _Timecounter_Bintime( bt );
65static inline void rtems_bsd_nanotime(
struct timespec *ts )
67 _Timecounter_Nanotime( ts );
73static inline void rtems_bsd_microtime(
struct timeval *tv )
75 _Timecounter_Microtime( tv );
81static inline void rtems_bsd_binuptime(
struct bintime *bt )
83 _Timecounter_Binuptime( bt );
89static inline void rtems_bsd_nanouptime(
struct timespec *ts )
91 _Timecounter_Nanouptime( ts );
97static inline void rtems_bsd_microuptime(
struct timeval *tv )
99 _Timecounter_Microuptime( tv );
105static inline void rtems_bsd_getbintime(
struct bintime *bt )
107 _Timecounter_Getbintime( bt );
113static inline void rtems_bsd_getnanotime(
struct timespec *ts )
115 _Timecounter_Getnanotime( ts );
121static inline void rtems_bsd_getmicrotime(
struct timeval *tv )
123 _Timecounter_Getmicrotime( tv );
129static inline void rtems_bsd_getbinuptime(
struct bintime *bt )
131 _Timecounter_Getbinuptime( bt );
137static inline void rtems_bsd_getnanouptime(
struct timespec *ts )
139 _Timecounter_Getnanouptime( ts );
145static inline void rtems_bsd_getmicrouptime(
struct timeval *tv )
147 _Timecounter_Getmicrouptime( tv );
This header file provides basic definitions used by the API and the implementation.
This header file provides interfaces of the Timecounter Handler which are used by the implementation ...