Changeset 3235ad9 in rtems for c/src/libmisc/stackchk


Ignore:
Timestamp:
08/23/95 19:30:23 (29 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/libmisc/stackchk/check.c

    r80e2c29e r3235ad9  
    251251        running,
    252252        running->Object.id,
    253         *running->Object.name
     253        *(unsigned32 *)running->Object.name
    254254    );
    255255    fflush(stderr);
     
    388388  printf( "0x%08x  0x%08x  0x%08x  0x%08x   %8d   %8d\n",
    389389          the_thread ? the_thread->Object.id : ~0,
    390           the_thread ? *the_thread->Object.name :
     390          the_thread ? *(unsigned32 *)the_thread->Object.name :
    391391                       rtems_build_name('I', 'N', 'T', 'R'),
    392392          (unsigned32) stack->area,
Note: See TracChangeset for help on using the changeset viewer.