Changeset e2ce15fc in rtems


Ignore:
Timestamp:
05/21/04 16:04:44 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Children:
0732eb4
Parents:
f7219b2
Message:

2004-05-21 Joel Sherrill <joel@…>

PR 627/doc

  • task.t: Behavior documented for an rtems_task_create with stacksize < minimum was not the implemented behavior.
Location:
doc/user
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/user/ChangeLog

    rf7219b2 re2ce15fc  
     12004-05-21      Joel Sherrill <joel@OARcorp.com>
     2
     3        PR 627/doc
     4        * task.t: Behavior documented for an rtems_task_create with stacksize <
     5        minimum was not the implemented behavior.
     6
    172004-05-06      Joel Sherrill <joel@OARcorp.com>
    28
  • doc/user/task.t

    rf7219b2 re2ce15fc  
    715715@code{@value{RPREFIX}INVALID_ADDRESS} - @code{id} is NULL@*
    716716@code{@value{RPREFIX}INVALID_NAME} - invalid task name@*
    717 @code{@value{RPREFIX}INVALID_SIZE} - stack too small@*
    718717@code{@value{RPREFIX}INVALID_PRIORITY} - invalid task priority@*
    719718@code{@value{RPREFIX}MP_NOT_CONFIGURED} - multiprocessing not configured@*
     
    744743Valid task priorities range from a high of 1 to a low of 255.
    745744
    746 The requested stack size should be at least
    747 @code{@value{RPREFIX}MINIMUM_STACK_SIZE}
    748 bytes.  The value of @code{@value{RPREFIX}MINIMUM_STACK_SIZE}
     745If the requested stack size is less than
     746@code{@value{RPREFIX}MINIMUM_STACK_SIZE} bytes, then RTEMS
     747will use @code{@value{RPREFIX}MINIMUM_STACK_SIZE} as the
     748stack size.  The value of @code{@value{RPREFIX}MINIMUM_STACK_SIZE}
    749749is processor dependent.
    750750Application developers should consider the stack usage of the
Note: See TracChangeset for help on using the changeset viewer.