Skip to content

Commit

Permalink
Changed my mind about the previous commit. Setting "skip" to -1 will …
Browse files Browse the repository at this point in the history
…signal a disabled breakpoint.
  • Loading branch information
soh-cah-toa committed Jul 12, 2011
1 parent e294495 commit 950e837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/parrot/hbdb.h
Expand Up @@ -91,7 +91,7 @@ typedef struct hbdb_breakpoint {
unsigned long id; /* ID number */
opcode_t *pc; /* Address of opcode to break at */
unsigned long line; /* Line number in source file */
unsigned long skip; /* Number of times to skip breakpoint */
long skip; /* Number of times to skip breakpoint */
hbdb_condition_flag *condition; /* Condition attached to breakpoint */
hbdb_breakpoint *prev; /* Previous breakpoint in the list */
hbdb_breakpoint *next; /* Next breakpoint in the list */
Expand Down

0 comments on commit 950e837

Please sign in to comment.