2
votes
When do function-level static variables get allocated/initialized?
The compiler will allocate static variable(s) defined in a function foo at program load, however the compiler will also add some additional instructions (machine code) to your function …
1
vote
JPEG support with ijg - getting access violation
It's difficult to see the cause of the access violation from the code sample given. If you can include a stack trace (with symbols) that would help identify the issue.
One thing to verify is that t …
2
votes
Multithreaded paranoia
is this ever a problem on real hardware?
Absolutely, particularly now with the move to multiple cores for current and future CPUs. If you're dependent on ordere …
0
votes
Propagating C++ exceptions across C stack frames on OS X
I'm definitely not an expert but from what I can determine; how the C/C++ run-time will behave with respect to C++ exceptions raised in the presence of C functions on the stack is implementation de …
