timer.c

来自「RTEMS (Real-Time Executive for Multiproc」· C语言 代码 · 共 71 行

C
71
字号
/*  *  This file implements a benchmark timer using the PPC decrement register. * *  COPYRIGHT (c) 1989-2000. *  On-Line Applications Research Corporation (OAR). * * *  $Id: timer.c,v 1.5 2000/12/19 16:55:35 joel Exp $ */#include <assert.h>#include <bsp.h>rtems_unsigned64 Timer_driver_Start_time;rtems_boolean Timer_driver_Find_average_overhead;void Timer_initialize(){  /*   *  Timer runs long and accurate enough not to require an interrupt.   */  Timer_driver_Start_time = PPC_Get_timebase_register();}#define AVG_OVERHEAD     24  /* It typically takes 24 instructions */                             /*     to start/stop the timer. */#define LEAST_VALID       1  /* Don't trust a value lower than this */                             /* psim can count instructions. :) */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 one microsecond units */  if ( total < LEAST_VALID )    return 0;            /* below timer resolution */  return total - 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 + =
减小字号Ctrl + -
显示快捷键?