Changeset e5274df in rtems for doc


Ignore:
Timestamp:
05/20/14 08:03:35 (10 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, master
Children:
40f2eafe
Parents:
2d96533
Message:

rtems: Clarify task set/get scheduler parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/user/smp.t

    r2d96533 re5274df  
    447447@example
    448448rtems_status_code rtems_task_get_scheduler(
    449   rtems_id  id,
     449  rtems_id  task_id,
    450450  rtems_id *scheduler_id
    451451);
     
    464464@subheading DESCRIPTION:
    465465
    466 Returns the scheduler identifier of a task in @code{scheduler_id}.
     466Returns the scheduler identifier of a task identified by @code{task_id} in
     467@code{scheduler_id}.
    467468
    468469@subheading NOTES:
     
    481482@example
    482483rtems_status_code rtems_task_set_scheduler(
    483   rtems_id id,
     484  rtems_id task_id,
    484485  rtems_id scheduler_id
    485486);
     
    499500@subheading DESCRIPTION:
    500501
    501 Sets the scheduler of a task specified by @code{scheduler_id}.  The scheduler
    502 of a task is initialized to the scheduler of the task that created it.
     502Sets the scheduler of a task identified by @code{task_id} to the scheduler
     503identified by @code{scheduler_id}.  The scheduler of a task is initialized to
     504the scheduler of the task that created it.
    503505
    504506@subheading NOTES:
Note: See TracChangeset for help on using the changeset viewer.