fix comment
This commit is contained in:
parent
db6cc12027
commit
096b65d8db
@ -27,8 +27,8 @@ typedef uint64_t absolute_time_t;
|
|||||||
|
|
||||||
/*! fn to_us_since_boot
|
/*! fn to_us_since_boot
|
||||||
* \brief convert an absolute_time_t into a number of microseconds since boot.
|
* \brief convert an absolute_time_t into a number of microseconds since boot.
|
||||||
* \param t the number of microseconds since boot
|
* \param t the absolute time to convert
|
||||||
* \return an absolute_time_t value equivalent to t
|
* \return a number of microseconds since boot, equivalent to t
|
||||||
*/
|
*/
|
||||||
static inline uint64_t to_us_since_boot(absolute_time_t t) {
|
static inline uint64_t to_us_since_boot(absolute_time_t t) {
|
||||||
return t;
|
return t;
|
||||||
@ -52,8 +52,8 @@ typedef struct {
|
|||||||
|
|
||||||
/*! fn to_us_since_boot
|
/*! fn to_us_since_boot
|
||||||
* \brief convert an absolute_time_t into a number of microseconds since boot.
|
* \brief convert an absolute_time_t into a number of microseconds since boot.
|
||||||
* \param t the number of microseconds since boot
|
* \param t the absolute time to convert
|
||||||
* \return an absolute_time_t value equivalent to t
|
* \return a number of microseconds since boot, equivalent to t
|
||||||
*/
|
*/
|
||||||
static inline uint64_t to_us_since_boot(absolute_time_t t) {
|
static inline uint64_t to_us_since_boot(absolute_time_t t) {
|
||||||
return t._private_us_since_boot;
|
return t._private_us_since_boot;
|
||||||
|
Loading…
Reference in New Issue
Block a user