summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/stackchk/stackchk.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 09:12:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 09:12:43 +0000
commit937ec606fbbba1876b79a0cbe4b84e3f3d9c77e9 (patch)
treea4b1d9c45149a1e519fc683633471cbd0605d6d5 /cpukit/libmisc/stackchk/stackchk.h
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-937ec606fbbba1876b79a0cbe4b84e3f3d9c77e9.tar.bz2
Convert to using "bool".
Diffstat (limited to 'cpukit/libmisc/stackchk/stackchk.h')
-rw-r--r--cpukit/libmisc/stackchk/stackchk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libmisc/stackchk/stackchk.h b/cpukit/libmisc/stackchk/stackchk.h
index ba6f8144c2..af16d39523 100644
--- a/cpukit/libmisc/stackchk/stackchk.h
+++ b/cpukit/libmisc/stackchk/stackchk.h
@@ -33,7 +33,7 @@ extern "C" {
* has blown its stack.
*
*/
-boolean rtems_stack_checker_is_blown( void );
+bool rtems_stack_checker_is_blown( void );
/** @brief Print Stack Usage Report
*
@@ -75,7 +75,7 @@ void rtems_stack_checker_report_usage_with_plugin(
* @note If this this the first task created, the stack checker
* will automatically intialize itself.
*/
-boolean rtems_stack_checker_create_extension(
+bool rtems_stack_checker_create_extension(
Thread_Control *running,
Thread_Control *the_thread
);