Changeset 444d048 in rtems


Ignore:
Timestamp:
11/25/03 14:15:24 (20 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ba77fe60
Parents:
09196757
Message:

2003-11-25 Joel Sherrill <joel@…>

PR 528/rtems_misc

  • task.t: Fix Ada binding for task variable calls.
Location:
doc/user
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/user/ChangeLog

    r09196757 r444d048  
     12003-11-25      Joel Sherrill <joel@OARcorp.com>
     2
     3        PR 528/rtems_misc
     4        * task.t: Fix Ada binding for task variable calls.
     5
    162003-11-21      Joel Sherrill <joel@OARcorp.com>
    27
  • doc/user/task.t

    r09196757 r444d048  
    16271627@ifset is-Ada
    16281628@example
     1629type Task_Variable_Dtor is access procedure (
     1630   Argument : in     RTEMS.Address;
     1631);
     1632
    16291633procedure Task_Variable_Add (
    1630    Id          : in     RTEMS.ID;
    1631    Ptr         : in     RTEMS.Address;
    1632    Result      :    out RTEMS.Status_Codes
     1634   ID            : in     RTEMS.ID;
     1635   Task_Variable : in     RTEMS.Address;
     1636   Dtor          : in     RTEMS.Task_Variable_Dtor;
     1637   Result        :    out RTEMS.Status_Codes
    16331638);
    16341639@end example
     
    16851690@example
    16861691procedure Task_Variable_Get (
    1687    Id          : in     RTEMS.ID;
    1688    Ptr         : in    RTEMS.Address;
    1689    Value      :    out RTEMS.Address;
    1690    Result      :    out RTEMS.Status_Codes
     1692   ID                  : in     RTEMS.ID;
     1693   Task_Variable       :    out RTEMS.Address;
     1694   Task_Variable_Value :    out RTEMS.Address;
     1695   Result              :    out RTEMS.Status_Codes
    16911696);
    16921697@end example
     
    17351740@example
    17361741procedure Task_Variable_Delete (
    1737    Id          : in     RTEMS.ID;
    1738    Ptr         : in    RTEMS.Address;
    1739    Result      :    out RTEMS.Status_Codes
     1742   ID                  : in     RTEMS.ID;
     1743   Task_Variable       :    out RTEMS.Address;
     1744   Result              :    out RTEMS.Status_Codes
    17401745);
    17411746@end example
Note: See TracChangeset for help on using the changeset viewer.