Changeset 34d934a in rtems


Ignore:
Timestamp:
05/21/04 16:04:47 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
58accdd
Parents:
fdcfca01
Message:

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

PR 627/doc

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

Legend:

Unmodified
Added
Removed
  • doc/ChangeLog

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

    rfdcfca01 r34d934a  
    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.