Eliminate rtems_boolean.

This commit is contained in:
Ralf Corsepius
2008-08-27 21:45:05 +00:00
parent dbfc4fdea3
commit 4dd986fa97
2 changed files with 4 additions and 4 deletions

View File

@@ -55,7 +55,7 @@
#define GBA_TM0CNT_PS 0x0003
#endif
rtems_boolean Timer_driver_Find_average_overhead;
bool Timer_driver_Find_average_overhead;
/**
* @brief Timer_initialize start TM0 and TM1
@@ -143,7 +143,7 @@ rtems_status_code Empty_function( void )
* @param find_flag boolean find_flag
* @return None
*/
void Set_find_average_overhead(rtems_boolean find_flag)
void Set_find_average_overhead(bool find_flag)
{
Timer_driver_Find_average_overhead = find_flag;
}

View File

@@ -15,7 +15,7 @@
#include <bsp.h>
#include <nds.h>
rtems_boolean Timer_driver_Find_average_overhead;
bool Timer_driver_Find_average_overhead;
void
Timer_initialize (void)
@@ -56,7 +56,7 @@ Empty_function (void)
}
void
Set_find_average_overhead (rtems_boolean find_flag)
Set_find_average_overhead (bool find_flag)
{
Timer_driver_Find_average_overhead = find_flag;
}