Changeset 5250ff39 in rtems for cpukit/rtems/macros/rtems


Ignore:
Timestamp:
08/23/95 21:06:31 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
7f6a24ab
Parents:
3235ad9
Message:

Moved _Thread_Information -> _RTEMS_tasks_Information.

Added a table of object information control blocks.

Modified _Thread_Get so it looks up a thread regardless of which
thread management "entity" (manager, internal, etc) actually "owns" it.

File:
1 edited

Legend:

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

    r3235ad9 r5250ff39  
    3030
    3131#define _RTEMS_tasks_Allocate() \
    32   (Thread_Control *) _Objects_Allocate( &_Thread_Information )
     32  (Thread_Control *) _Objects_Allocate( &_RTEMS_tasks_Information )
    3333
    3434/*PAGE
     
    3939
    4040#define _RTEMS_tasks_Free( _the_task ) \
    41   _Objects_Free( &_Thread_Information, &(_the_task)->Object )
     41  _Objects_Free( &_RTEMS_tasks_Information, &(_the_task)->Object )
    4242
    4343/*PAGE
Note: See TracChangeset for help on using the changeset viewer.