Changeset 7f6a24ab in rtems for cpukit/rtems/macros/rtems


Ignore:
Timestamp:
08/28/95 15:30:29 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5072b07
Parents:
5250ff39
Message:

Added unused priority ceiling parameter to rtems_semaphore_create.

Rearranged code to created thread handler routines to initialize,
start, restart, and "close/delete" a thread.

Made internal threads their own object class. This now uses the
thread support routines for starting and initializing a thread.

Insured deleted tasks are freed to the Inactive pool associated with the
correct Information block.

Added an RTEMS API specific data area to the thread control block.

Beginnings of removing the word "rtems" from the core.

Location:
cpukit/rtems/macros/rtems/rtems
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/rtems/macros/rtems/rtems/modes.inl

    r5250ff39 r7f6a24ab  
    8989#define _Modes_Change( _old_mode_set, _new_mode_set, \
    9090                       _mask, _out_mode_set, _changed ) \
    91   { rtems_mode _out_mode; \
     91  { Modes_Control _out_mode; \
    9292    \
    9393    _out_mode         =  (_old_mode_set); \
  • cpukit/rtems/macros/rtems/rtems/tasks.inl

    r5250ff39 r7f6a24ab  
    8484  }
    8585
     86/*PAGE
     87 *
     88 *  _RTEMS_Tasks_Priority_to_Core
     89 */
     90 
     91#define _RTEMS_Tasks_Priority_to_Core( _priority ) \
     92  ((Priority_Control) (_priority))
     93
    8694#endif
    8795/* end of include file */
Note: See TracChangeset for help on using the changeset viewer.