|
|
|
|
|
by Kon-Peki
1467 days ago
|
|
My experience (15+ years of debugging legacy C code) is that if the segfault is repeatable - as in you can make it happen in the same place over and over again - the fact that the error is somewhere else only makes things marginally more difficult. Even the old-fashioned debuggers can monitor memory locations for changes, and if that doesn't work you can set breakpoints in various locations and manually check memory for corruption - it can really narrow down the possibilities. I always enjoyed the mystery. It's a puzzle with an as-yet unknown solution. How can you not love it? |
|