summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:28:56 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:28:56 +0000
commit11672356e7f870033e27f934c57a5d48d061991e (patch)
tree635ee22da74184c7c6f540b67e77168767ebd9eb /cpukit/libmisc/shell/shell.h
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-11672356e7f870033e27f934c57a5d48d061991e.tar.bz2
Convert to using "bool".
Diffstat (limited to 'cpukit/libmisc/shell/shell.h')
-rw-r--r--cpukit/libmisc/shell/shell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libmisc/shell/shell.h b/cpukit/libmisc/shell/shell.h
index 904d4e0bd9..5509b365bc 100644
--- a/cpukit/libmisc/shell/shell.h
+++ b/cpukit/libmisc/shell/shell.h
@@ -181,8 +181,8 @@ typedef struct {
char *devname;
char *taskname;
/* user extensions */
- int exit_shell; /* logout */
- int forever ; /* repeat login */
+ bool exit_shell; /* logout */
+ bool forever ; /* repeat login */
int errorlevel;
int echo;
char cwd[256];
@@ -192,7 +192,7 @@ typedef struct {
rtems_id wake_on_end;
} rtems_shell_env_t;
-rtems_boolean rtems_shell_main_loop(
+bool rtems_shell_main_loop(
rtems_shell_env_t *rtems_shell_env
);