fault-tolerant-heap

What is Windows 7's Fault Tolerant Heap?

I'd like some technical information on how it works, and how I can disable or enumerate the Fault Tolerant Heap shims that are associated with processes that crash frequently. Is there a heuristic of some sort that Windows 7 uses to decide when to apply an FTH shim? ...

Dealing with an object corrupting the heap

Hi there, In my application I am creating an object pretty much like this : connect() { mVHTGlove = new vhtGlove(params); } and once I am about to close application I call this one : disconnect() { if (mVHTGlove) delete mVHTGlove; } This call always triggers a breakpoint with the following message : Windows has trigg...