summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-31 19:42:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-31 19:42:12 +0000
commitb8730831a2e8b9fdd188d2edb37a8c755b7fd054 (patch)
treebd500be2e23bb746c9018855e3404cf24adb6808
parent2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-b8730831a2e8b9fdd188d2edb37a8c755b7fd054.tar.bz2
2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/include/timerdrv.h: Rename timer driver methods to follow RTEMS programming conventions.
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libcsupport/include/timerdrv.h8
2 files changed, 9 insertions, 4 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index eb6760d0e4..82ec409e9d 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * libcsupport/include/timerdrv.h: Rename timer driver methods to follow
+ RTEMS programming conventions.
+
2008-08-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* posix/Makefile.am, rtems/src/tasksetpriority.c: Improve comments and
diff --git a/cpukit/libcsupport/include/timerdrv.h b/cpukit/libcsupport/include/timerdrv.h
index 7547a683ec..6d4312e070 100644
--- a/cpukit/libcsupport/include/timerdrv.h
+++ b/cpukit/libcsupport/include/timerdrv.h
@@ -25,13 +25,13 @@ extern "C" {
/* functions */
-void Timer_initialize( void );
+void benchmark_timer_initialize( void );
-uint32_t Read_timer( void );
+uint32_t benchmark_timer_read( void );
-rtems_status_code Empty_function( void );
+rtems_status_code benchmark_timer_empty_function( void );
-void Set_find_average_overhead(
+void benchmark_timer_disable_subtracting_average_overhead(
rtems_boolean find_flag
);