Changeset babb1a2c in rtems for doc


Ignore:
Timestamp:
04/16/14 14:02:24 (10 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, master
Children:
f830029
Parents:
d1f2f22
git-author:
Sebastian Huber <sebastian.huber@…> (04/16/14 14:02:24)
git-committer:
Sebastian Huber <sebastian.huber@…> (04/17/14 06:06:39)
Message:

doc: rtems_task_get_scheduler()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/user/smp.t

    rd1f2f22 rbabb1a2c  
    1919@item @code{rtems_scheduler_ident} - Get ID of a scheduler
    2020@item @code{rtems_scheduler_get_processor_set} - Get processor set of a scheduler
     21@item @code{rtems_task_get_scheduler} - Get scheduler of a task
    2122@item @code{rtems_task_get_affinity} - Get task processor affinity
    2223@item @code{rtems_task_set_affinity} - Set task processor affinity
     
    375376
    376377@c
     378@c rtems_task_get_scheduler
     379@c
     380@page
     381@subsection TASK_GET_SCHEDULER - Get scheduler of a task
     382
     383@subheading CALLING SEQUENCE:
     384
     385@ifset is-C
     386@example
     387rtems_status_code rtems_task_get_scheduler(
     388  rtems_id  id,
     389  rtems_id *scheduler_id
     390);
     391@end example
     392@end ifset
     393
     394@ifset is-Ada
     395@end ifset
     396
     397@subheading DIRECTIVE STATUS CODES:
     398
     399@code{@value{RPREFIX}SUCCESSFUL} - successful operation@*
     400@code{@value{RPREFIX}INVALID_ADDRESS} - @code{scheduler_id} is NULL@*
     401@code{@value{RPREFIX}INVALID_ID} - invalid task id
     402
     403@subheading DESCRIPTION:
     404
     405Returns the scheduler identifier of a task in @code{scheduler_id}.
     406
     407@subheading NOTES:
     408
     409None.
     410
     411@c
    377412@c rtems_task_get_affinity
    378413@c
Note: See TracChangeset for help on using the changeset viewer.