summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix/rtems
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 02:00:15 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 02:00:15 +0000
commit5d42c1b7bc038bf9cb2a8acdeb5a93005c9693f8 (patch)
tree8942331714c94ec5a7387a869cc33bab8165cedb /cpukit/score/cpu/unix/rtems
parent2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-5d42c1b7bc038bf9cb2a8acdeb5a93005c9693f8.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/score/cpu/unix/rtems')
-rw-r--r--cpukit/score/cpu/unix/rtems/score/cpu.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/score/cpu/unix/rtems/score/cpu.h b/cpukit/score/cpu/unix/rtems/score/cpu.h
index 728137b695..4734539173 100644
--- a/cpukit/score/cpu/unix/rtems/score/cpu.h
+++ b/cpukit/score/cpu/unix/rtems/score/cpu.h
@@ -771,7 +771,7 @@ extern void _CPU_Context_Initialize(
uint32_t _size,
uint32_t _new_level,
void *_entry_point,
- boolean _is_fp
+ bool _is_fp
);
/* end of Context handler macros */
@@ -1028,17 +1028,17 @@ static inline uint32_t CPU_swap_u32(
typedef void ( *rtems_sync_io_handler )(
int fd,
- boolean read,
- boolean wrtie,
- boolean except
+ bool read,
+ bool wrtie,
+ bool except
);
/* returns -1 if fd to large, 0 is successful */
int _CPU_Set_sync_io_handler(
int fd,
- boolean read,
- boolean write,
- boolean except,
+ bool read,
+ bool write,
+ bool except,
rtems_sync_io_handler handler
);
@@ -1059,7 +1059,7 @@ void _CPU_Stop_clock( void );
void _CPU_SHM_Init(
uint32_t maximum_nodes,
- boolean is_master_node,
+ bool is_master_node,
void **shm_address,
uint32_t *shm_length
);