Changeset e22e308 in rtems


Ignore:
Timestamp:
05/19/00 19:06:24 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Children:
9f2e6c6
Parents:
6174e27
Message:

Use minimum stack size.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/sptests/sp28/init.c

    r6174e27 re22e308  
    8282                rtems_task_wake_after (0);
    8383        printf ("Task variables test complete.\n");
     84        puts ("*** END OF TEST SP28 ***" );
    8485        exit (0);
    8586}
     
    9394        sc = rtems_task_create (rtems_build_name ('S', 'R', 'V', arg + 'A'),
    9495                100,
    95                 10000,
     96                RTEMS_MINIMUM_STACK_SIZE,
    9697                RTEMS_PREEMPT|RTEMS_NO_TIMESLICE|RTEMS_NO_ASR|RTEMS_INTERRUPT_LEVEL(0),
    9798                RTEMS_NO_FLOATING_POINT|RTEMS_LOCAL,
     
    111112Init (rtems_task_argument ignored)
    112113{
    113         printf ("Task variables test begins.  Any output between\n");
    114         printf ("this line and the `Task variables test complete' line indicates an error.\n");
     114
     115        puts ("*** START OF TEST SP28 ***" );
     116        puts ("Task variables test begins.  Any output between\n");
     117        puts ("this line and the `Task variables test complete' line indicates an error.\n");
    115118        starttask (1);
    116119        starttask (2);
Note: See TracChangeset for help on using the changeset viewer.