summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/shmdr
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-07 03:18:29 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-07 03:18:29 +0000
commite8d4c79790f8291bffc3949442eef0da2ca26a14 (patch)
tree862dd0229fee42ed01dd457905b05aaabbc7c4dd /c/src/libchip/shmdr
parent2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e8d4c79790f8291bffc3949442eef0da2ca26a14.tar.bz2
Convert to "bool".
Diffstat (limited to 'c/src/libchip/shmdr')
-rw-r--r--c/src/libchip/shmdr/fatal.c4
-rw-r--r--c/src/libchip/shmdr/shm_driver.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/c/src/libchip/shmdr/fatal.c b/c/src/libchip/shmdr/fatal.c
index b89265da00..141f33f735 100644
--- a/c/src/libchip/shmdr/fatal.c
+++ b/c/src/libchip/shmdr/fatal.c
@@ -22,8 +22,8 @@
void MPCI_Fatal(
Internal_errors_Source source,
- boolean is_internal,
- uint32_t error
+ bool is_internal,
+ uint32_t error
)
{
/* Eventually need to attempt to broadcast a K_FATAL message
diff --git a/c/src/libchip/shmdr/shm_driver.h b/c/src/libchip/shmdr/shm_driver.h
index 695172a0ba..917181c185 100644
--- a/c/src/libchip/shmdr/shm_driver.h
+++ b/c/src/libchip/shmdr/shm_driver.h
@@ -480,7 +480,7 @@ void Shm_Locked_queue_Initialize(
/* portable routines */
void Init_env_pool( void );
void Shm_Print_statistics( void );
-void MPCI_Fatal( Internal_errors_Source, boolean, uint32_t);
+void MPCI_Fatal( Internal_errors_Source, bool, uint32_t);
rtems_task Shm_Cause_interrupt( uint32_t );
void Shm_install_timer( void );
void Shm_Convert_packet( rtems_packet_prefix * );