timing.h
来自「it is know of https implement source cod」· C头文件 代码 · 共 51 行
H
51 行
/** * \file timing.h */#ifndef XYSSL_TIMING_H#define XYSSL_TIMING_H/** * \brief timer structure */struct hr_time{ unsigned char opaque[32];};#ifdef __cplusplusextern "C" {#endifextern int alarmed;/** * \brief Return the CPU cycle counter value */unsigned long hardclock( void );/** * \brief Return the elapsed time in milliseconds * * \param val points to a timer structure * \param reset if set to 1, the timer is restarted */unsigned long get_timer( struct hr_time *val, int reset );/** * \brief Setup an alarm clock * * \param seconds delay before the "alarmed" flag is set */void set_alarm( int seconds );/** * \brief Sleep for a certain amount of time */void m_sleep( int milliseconds );#ifdef __cplusplus}#endif#endif /* timing.h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?