summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-02-14 20:08:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-02-14 20:08:45 +0000
commitb70779ae7a0fecf61d7022a50ea18dafdd2a723b (patch)
tree05b9eea2db222623a27d8728690d9427e544acd4
parent2003-02-14 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-b70779ae7a0fecf61d7022a50ea18dafdd2a723b.tar.bz2
2003-02-14 Till Straumann <strauman@slac.stanford.edu>
PR 352/rtems_misc * shell/shell.c: make rtems_shell main task an FP enabled task.
-rw-r--r--cpukit/libmisc/ChangeLog5
-rw-r--r--cpukit/libmisc/shell/shell.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/libmisc/ChangeLog b/cpukit/libmisc/ChangeLog
index b555db7791..886047c47f 100644
--- a/cpukit/libmisc/ChangeLog
+++ b/cpukit/libmisc/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-14 Till Straumann <strauman@slac.stanford.edu>
+
+ PR 352/rtems_misc
+ * shell/shell.c: make rtems_shell main task an FP enabled task.
+
2003-01-27 Dan Smisko <dan@balanced.com>
* stackchk/check.c: Fix problem where _Objects_Get_information()
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 4815d517a0..4a31186700 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -651,7 +651,7 @@ rtems_status_code shell_init (char * task_name,
task_priority,
task_stacksize?task_stacksize:RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
- RTEMS_DEFAULT_ATTRIBUTES,
+ RTEMS_LOCAL | RTEMS_FLOATING_POINT,
&task_id);
if (sc!=RTEMS_SUCCESSFUL) {
rtems_error(sc,"creating task %s in shell_init()",task_name);