Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Ticket #352: shell.diff

File shell.diff, 1.2 KB (added by strauman, on 12/03/06 at 13:31:13)

shell.diff

Line 
1Patch against RTEMS-ss-20030128
2Author: Till Straumann <strauman@slac.stanford.edu>
3
42003/2/11
5
6This patch addresses the following issues:
7    - made rtems_shell main task an FP enabled task
8Index: cpukit/libmisc/shell/shell.c
9===================================================================
10RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libmisc/shell/shell.c,v
11retrieving revision 1.1.1.3
12retrieving revision 1.3
13diff -c -r1.1.1.3 -r1.3
14*** cpukit/libmisc/shell/shell.c        29 Jan 2003 22:57:36 -0000      1.1.1.3
15--- cpukit/libmisc/shell/shell.c        30 Jan 2003 00:49:56 -0000      1.3
16***************
17*** 651,657 ****
18                     task_priority,
19                     task_stacksize?task_stacksize:RTEMS_MINIMUM_STACK_SIZE,
20                     RTEMS_DEFAULT_MODES,
21!                    RTEMS_DEFAULT_ATTRIBUTES,
22                     &task_id);
23   if (sc!=RTEMS_SUCCESSFUL) {
24    rtems_error(sc,"creating task %s in shell_init()",task_name);       
25--- 651,657 ----
26                     task_priority,
27                     task_stacksize?task_stacksize:RTEMS_MINIMUM_STACK_SIZE,
28                     RTEMS_DEFAULT_MODES,
29!                    RTEMS_LOCAL | RTEMS_FLOATING_POINT,
30                     &task_id);
31   if (sc!=RTEMS_SUCCESSFUL) {
32    rtems_error(sc,"creating task %s in shell_init()",task_name);