Changeset 7f6a24ab in rtems for c/src/libmisc/stackchk


Ignore:
Timestamp:
08/28/95 15:30:29 (29 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/libmisc/stackchk/check.c

    r5250ff39 r7f6a24ab  
    434434    information = _Objects_Information_table[ class_index ];
    435435    if ( information && information->is_thread ) {
    436       for ( i=1 ; i < information->maximum ; i++ ) {
     436      for ( i=1 ; i <= information->maximum ; i++ ) {
    437437        the_thread = (Thread_Control *)information->local_table[ i ];
    438438        Stack_check_Dump_threads_usage( the_thread );
Note: See TracChangeset for help on using the changeset viewer.