Changeset 580 for trunk/user/idbg/idbg.c


Ignore:
Timestamp:
Oct 8, 2018, 11:31:42 AM (6 years ago)
Author:
alain
Message:

1) Register the kernel process in the cluster manager local list.
2) Introduce a new service in idbg : display the set of busylocks taken by a given thread.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/user/idbg/idbg.c

    r475 r580  
    1616{
    1717    unsigned long long  cycle;
     18    unsigned int        cxy;
     19    unsigned int        lid;
    1820
    1921    get_cycle( &cycle );
     22    get_core( &cxy , &lid );
    2023
    21     printf( "\n[IDBG] starts at cycle %d\n", (unsigned int)cycle );
     24    printf( "\n[IDBG] starts on core[%x,%d] / cycle %d\n",
     25    cxy , lid , (unsigned int)cycle );
    2226
    2327    idbg();
Note: See TracChangeset for help on using the changeset viewer.