1
vote
Why does a C/C++ program often have optimization turned off in debug mode?
Another of the issues with optimizations are inline functions, also in the sense that you will always single-step through them.
With GCC, with debugging and optimizations enabled together, …
1
vote
Why are C character literals ints instead of chars?
I didn't know this indeed.
Before prototypes existed, anything narrower than an int was converted to an int when using it as a function argument. That may be part of the explanation.
…
1
vote
C library vs WinApi
A few additional points on some examples:
FillMemory, ZeroMemory
Neither these nor the C functions are system calls, so either one might be implemented …
2
votes
Are memory leaks ever ok?
While most answers concentrate on real memory leaks (which are not OK ever, because they are a sign of sloppy coding), this part of the question appears more interesting to me:
…
2
votes
Checking stack usage at compile time
Linux kernel code runs on a 4K stack on x86. Hence they care. What they use to check that, is a perl script they wrote, which you may find as scripts/checkstack.pl in a recent kernel tarball (2.6.2 …
0
votes
pthread_cond_wait versus semaphore
The 2nd snippet is racy, don't do that.
The other answers have a nice discussion of the relative merits; I'll just add that pthread_cond_broadcast is a clear advantage of condi …
