void RemoveBPs( void ) { brkp *bp; for( bp = BrkList; bp != NULL; bp = bp->next ) { if( IS_BP_EXECUTE( bp->th ) ) { RemoveOneBP( bp ); } else { RemoveOneWP( bp ); } } if( UserTmpBrk.status.b.active ) { RemoveOneBP( &UserTmpBrk ); } if( DbgTmpBrk.status.b.active ) { RemoveOneBP( &DbgTmpBrk ); } }
void RemoveBPs( void ) { brkp *bp; for( bp = BrkList; bp != NULL; bp = bp->next ) { if( bp->th != MAD_NIL_TYPE_HANDLE ) { RemoveOneWP( bp ); } else { RemoveOneBP( bp ); } } if( UserTmpBrk.status.b.active ) { RemoveOneBP( &UserTmpBrk ); } if( DbgTmpBrk.status.b.active ) { RemoveOneBP( &DbgTmpBrk ); } }