-
Recent Posts
Categories
- AltDevBlogADay
- Bugs
- Chromium
- Code analysis
- Code Reliability
- Commuting
- Computers and Internet
- Debugging
- Documentation
- Drinks
- Environment
- Floating Point
- Fractals
- Fun
- Gaming
- Investigative Reporting
- Linux
- Math
- memory
- Performance
- Programming
- Quadratic
- Rants
- Security
- Symbols
- Travel
- uiforetw
- Uncategorized
- Unicycling
- Visual Studio
- WLPG
- Xbox 360
- xperf
Follow me on Twitter
My TweetsMeta
Tag Archives: exceptions
Developers Rejoice Again
Just a few short weeks ago I recommended that all developers running 64-bit Windows 7 (that is, most developers) should install a hot-fix to correct a stack corruption bug that would hit anytime a 32-bit program crashed in the debugger … Continue reading
Posted in Code Reliability, Programming, Visual Studio
Tagged bug voting, crashing, debugging, exceptions, first-chance exceptions, Windows bugs
1 Comment
Developers Rejoice–Windows 7 Stack Corruption Fixed!
64-bit Windows 7 SP1 has a stack corruption bug that affects developers. Any developer with an AVX capable processor who is writing 32-bit code on 64-bit Window 7 SP1 is vulnerable. That sounds like a lot of conditions but I … Continue reading
Posted in Code Reliability, Programming, Visual Studio
Tagged bug voting, crashing, debugging, exceptions, first-chance exceptions, Windows bugs
17 Comments
Should This Windows 7 Bug be Fixed?
Last year I reported on a bug in 64-bit Windows 7 SP1’s support for AVX-capable processors. This bug causes stack corruption when a 32-bit program crashes while being debugged in Visual Studio, even if AVX is not used. Microsoft has … Continue reading
Posted in Code Reliability, Programming, Visual Studio
Tagged bug voting, crashing, debugging, exceptions, first-chance exceptions, Windows bugs
84 Comments
When Even Crashing Doesn’t Work
I’ve written previously about the importance of crashing in order to improve code quality. However even the seemingly simple task of crashing can be more error prone than you might expect. I’ve recently become aware of two different problems that … Continue reading
Posted in AltDevBlogADay, Code Reliability, Programming, Visual Studio
Tagged callbacks, crashing, debugging, exceptions, first-chance exceptions, kernel
26 Comments
Exceptional Floating Point
Floating-point math has an answer for everything, but sometimes that’s not what you want. Sometimes instead of getting an answer to the question sqrt(-1.0) (it’s NaN) it’s better to know that your software is asking imaginary questions. The IEEE standard … Continue reading
Posted in AltDevBlogADay, Floating Point, Programming
Tagged divide by zero, double, exceptions, float, floating point
24 Comments