Changeset 3235ad9 in rtems for c/src/exec/score/src/thread.c


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

Support for variable length names added to Object Handler. This supports
both fixed length "raw" names and strings from the API's point of view.

Both inline and macro implementations were tested.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/src/thread.c

    r80e2c29e r3235ad9  
    5959
    6060  _Objects_Initialize_information(
    61      &_Thread_Information,
    62      OBJECTS_RTEMS_TASKS,
    63      TRUE,
    64      maximum_tasks,
    65      sizeof( Thread_Control )
     61    &_Thread_Information,
     62    OBJECTS_RTEMS_TASKS,
     63    TRUE,
     64    maximum_tasks,
     65    sizeof( Thread_Control ),
     66    FALSE,
     67    RTEMS_MAXIMUM_NAME_LENGTH
    6668  );
    6769
Note: See TracChangeset for help on using the changeset viewer.