mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-02-06 03:33:05 +08:00
- start by "/**", - fix file relative path, - fix typos, Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
43 lines
655 B
C
43 lines
655 B
C
/*
|
|
* Copyright (c) 2016, Xilinx Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/**
|
|
* @file time.h
|
|
* @brief Time primitives for libmetal.
|
|
*/
|
|
|
|
#ifndef __METAL_TIME__H__
|
|
#define __METAL_TIME__H__
|
|
|
|
#include <stdint.h>
|
|
#include <metal/sys.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** \defgroup time TIME Interfaces
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief get timestamp
|
|
* This function returns the timestampe as unsigned long long
|
|
* value.
|
|
*
|
|
* @return timestamp
|
|
*/
|
|
unsigned long long metal_get_timestamp(void);
|
|
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __METAL_TIME__H__ */
|
|
|