Ignore:
Timestamp:
May 16, 2018, 4:15:22 PM (6 years ago)
Author:
alain
Message:

Fix few bugs whike debugging the sort multi-thread application.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libs/mini-libc/stdlib.h

    r439 r443  
    130130int rand();
    131131
     132/*********************************************************************************************
     133 * This blocking function implements an user-level interactive debugger that can be
     134 * introduced in any user application to display various kernel distributed structures
     135 * related to the calling process. The supported commands are:
     136 * - p (cxy)     : display all processes descriptors in a given cluster.
     137 * - s (cxy,lid) : display all threads attached to a given core in a given cluster.
     138 * - v (cxy)     : display the calling process VMM in a given cluster.
     139 * - t (tid)     : display all owner process descriptors attached to a given TXT terminal.
     140 * - x           : force the calling process to exit.
     141 * - c           : continue calling process execution.
     142 *********************************************************************************************
     143 * @ return an integer value between 0 and RAND_MAX.
     144 ********************************************************************************************/
     145void idbg();
     146
     147
    132148#endif  // _STDLIB_H_
Note: See TracChangeset for help on using the changeset viewer.