Files
checker_m4/source/OpenAMP/libmetal/lib/system/freertos/time.c
2023-06-21 18:00:56 +08:00

21 lines
366 B
C

/*
* Copyright (c) 2016, Xilinx Inc. and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*
* @file freertos/time.c
* @brief freertos libmetal time handling.
*/
#include <FreeRTOS.h>
#include <task.h>
#include <metal/time.h>
unsigned long long metal_get_timestamp(void)
{
return (unsigned long long)xTaskGetTickCount();
}