Author: coke Date: Sat Jul 23 18:06:57 2005 New Revision: 8689 Modified: trunk/include/parrot/debug.h Log: Documentation clue for anyone who wants to add debugger commands.
Modified: trunk/include/parrot/debug.h ============================================================================== --- trunk/include/parrot/debug.h (original) +++ trunk/include/parrot/debug.h Sat Jul 23 18:06:57 2005 @@ -282,6 +282,12 @@ void PDB_help(Interp *interpreter, const void PDB_backtrace(Interp *interpreter); +/* + * These constants correspond to the debugger commands and are + * used in src/debug.c. To map command strings to their + * numeric values, use the algorithm from parse_command() in that file. + */ + #define c_b 25245 #define c_c 25500 #define c_d 25755
