Search Results

5
votes
6answers
449 views

Efficient heap-manager for heavy churn, tiny allocs?

I'm looking for ideas for a heap-manager to handle a very specific situation: Lots and lots of very small allocations, ranging from 12 to 64 bytes each. Anything bigger, I will pass on to the regul …
0
votes

Determine Process Info Programmatically in Darwin/OSX

Most of this info can be gotten from …
2
votes

Should my C++ program support IA64 or only x64?

You're the only person qualified to make the judgement of whether expected sales will cover the cost of developing and supporting it. …
3
votes

Infinite loops - top or bottom?

Infinite tail-recursion ;) It's somewhat compiler-dependant... …
5
votes

Constant value in conditional expression

A warning doesn't automatically mean that code is bad, just suspicious-looking. Personally I start from a position of enabling all the warnings I can, then turn off any that prove …