mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
22 lines
582 B
C
22 lines
582 B
C
/*
|
|
* Copyright (C) 2017-2019 Alibaba Group Holding Limited
|
|
*/
|
|
|
|
/******************************************************************************
|
|
* @file linpack_timer_port.h
|
|
* @brief the head file for the linpack
|
|
* @version V1.0
|
|
* @date 20. July 2016
|
|
******************************************************************************/
|
|
#ifndef CORE_SYSTIMER_H_
|
|
#define CORE_SYSTIMER_H_
|
|
|
|
void Timer_Open();
|
|
void Timer_Start();
|
|
void Timer_Stop();
|
|
void Timer_Close();
|
|
unsigned long long clock_gettime();
|
|
long time();
|
|
|
|
#endif /* CORE_SYSTIMER_H_ */
|