Changes between Version 2 and Version 3 of DevelopersFAQ


Ignore:
Timestamp:
Aug 5, 2007, 5:18:07 PM (17 years ago)
Author:
guest
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopersFAQ

    v2 v3  
    5656You can also use the Watcom debugger. It can give you a call trace too.
    5757
     58
     59=== Can a hardware breakpoint be used to detect a spurious write? ===
     60
     61You can if the exception address shown in the popuplog P2 field is consistent.
     62
     63=== If all the traps are in the library code, what does this possibly mean? ===
     64
     65This is not unusual for buffer overflows. Each buffer in the heap has a
     66header and depending on the implementation a trailer which contains counts
     67and/or pointers. If you wipe out one of these, a trap will follow soon
     68enough.
     69
    5870----