2011-10-19 Ralf Corsépius <ralf.corsepius@rtems.org>

* include/rtems/btimer.h: Introduce benchmark_timer_t.
	Let benchmark_timer_read return benchmark_timer_t.
This commit is contained in:
Ralf Corsepius
2011-10-19 15:06:04 +00:00
parent 15211c8307
commit d4b5246079
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2011-10-19 Ralf Corsépius <ralf.corsepius@rtems.org>
* include/rtems/btimer.h: Introduce benchmark_timer_t.
Let benchmark_timer_read return benchmark_timer_t.
2011-10-18 Sebastian Huber <sebastian.huber@embedded-brains.de> 2011-10-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
PR 1939/cpukit PR 1939/cpukit

View File

@@ -35,11 +35,13 @@
extern "C" { extern "C" {
#endif #endif
typedef uint32_t benchmark_timer_t;
/* functions */ /* functions */
extern void benchmark_timer_initialize( void ); extern void benchmark_timer_initialize( void );
extern uint32_t benchmark_timer_read( void ); extern benchmark_timer_t benchmark_timer_read( void );
extern rtems_status_code benchmark_timer_empty_function( void ); extern rtems_status_code benchmark_timer_empty_function( void );