8
votes
Simple example of threading in C++
Well, technically any such object will wind up being built over a C-style thread library because C++ only just specified a stock 'std::thread' model in c++0x, which was just nailed down and hasn't …
0
votes
Reader/Writer Locks in C++
Intel Thread Building Blocks also provide a couple of rw_lock variants:
http://www.threadingbuildingblocks.org/
…
1
vote
Drawbacks to templates and the STL in C++
Heavy template abuse (in particular
template meta-programming and Boost
addiction) can lead to excessively
long compile and link times.
You also wind up with executables
th …
0
votes
is it possible to have templated classes within a template class?
Yes.
It is used a lot by the STL for things like allocators and iterators.
It looks like you are running into some other issue. Perhaps you are missing a template on an out of lin …
5
votes
Are memory leaks ever ok?
I can count on one hand the number of "benign" leaks that I've seen over time.
So the answer is a very qualified yes.
An example. If you have a singleton resource that needs a buff …
5
votes
Singleton Destructors
You can rely on it being cleaned up by the operating system.
That said, if you are in a garbage collected language with finalizers rather than destructors you may want to have a graceful s …
5
votes
64 bit floating point porting issues
Your compiler is probably using SSE opcodes to do most of its floating point arithmetic on the 64 bit platform assuming x86-64, whereas for compatibility reasons it probably used the FPU before for …
