summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/key.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 15:23:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 15:23:12 +0000
commitf8437c81d5e191ebe10374938974315aee07faf3 (patch)
tree81e073f66d0e943a7067e5b36923dd1a10219137 /cpukit/posix/include/rtems/posix/key.h
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f8437c81d5e191ebe10374938974315aee07faf3.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/posix/include/rtems/posix/key.h')
-rw-r--r--cpukit/posix/include/rtems/posix/key.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/include/rtems/posix/key.h b/cpukit/posix/include/rtems/posix/key.h
index a3bc0f7375..6b1840713d 100644
--- a/cpukit/posix/include/rtems/posix/key.h
+++ b/cpukit/posix/include/rtems/posix/key.h
@@ -33,7 +33,7 @@ extern "C" {
typedef struct {
Objects_Control Object;
- boolean is_active;
+ bool is_active;
void (*destructor)( void * );
void **Values[ OBJECTS_APIS_LAST + 1 ];
} POSIX_Keys_Control;
@@ -124,7 +124,7 @@ RTEMS_INLINE_ROUTINE POSIX_Keys_Control *_POSIX_Keys_Get (
* This function returns TRUE if the_key is NULL and FALSE otherwise.
*/
-RTEMS_INLINE_ROUTINE boolean _POSIX_Keys_Is_null (
+RTEMS_INLINE_ROUTINE bool _POSIX_Keys_Is_null (
POSIX_Keys_Control *the_key
);