⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/*  timer.c * *  This file implements a benchmark timer using the General Purpose Timer. * *  Notes: * *  BSP_TIMER_AVG_OVERHEAD and BSP_TIMER_LEAST_VALID are required to be *  provided in bsp.h * *  COPYRIGHT (c) 1989-1997. *  On-Line Applications Research Corporation (OAR). * *  The license and distribution terms for this file may in *  the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  $Id: timer.c,v 1.2.4.1 2003/09/04 18:45:11 joel Exp $ */#include <assert.h>#include <bsp.h>rtems_unsigned64 Timer_driver_Start_time;rtems_boolean Timer_driver_Find_average_overhead;/* * Timer_initialize  */void Timer_initialize(){  /*   *  Timer runs long and accurate enough not to require an interrupt.   */  Timer_driver_Start_time = PPC_Get_timebase_register();}/* *  Read_timer */int Read_timer(){  rtems_unsigned64  clicks;  rtems_unsigned64  total64;  rtems_unsigned32  total;  /* approximately CLOCK_SPEED clicks per microsecond */  clicks = PPC_Get_timebase_register();  assert( clicks > Timer_driver_Start_time );  total64 = clicks - Timer_driver_Start_time;  assert( total64 <= 0xffffffff );  /* fits into a unsigned32 */  total = (rtems_unsigned32) total64;  if ( Timer_driver_Find_average_overhead == 1 )    return total;          /* in "clicks" of the decrementer units */  if ( total < BSP_TIMER_LEAST_VALID )    return 0;            /* below timer resolution */  return BSP_Convert_decrementer(total - BSP_TIMER_AVG_OVERHEAD);}rtems_status_code Empty_function( void ){  return RTEMS_SUCCESSFUL;}void Set_find_average_overhead(  rtems_boolean find_flag){  Timer_driver_Find_average_overhead = find_flag;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -