Tagged Questions
The fault-tolerant-heap tag has no wiki summary.
5
votes
5answers
1k views
How do I turn off the fault tolerant heap?
I've recently started seeing this line in my Visual Studio 2005 output window when launching my application:
FTH: (7156): *** Fault tolerant heap shim applied to current process. This is usually due ...
1
vote
0answers
154 views
'Fault Tolerant Heap' causing problems
My program's performance is sometimes being cut in half due to Windows 7 embedding a 'fault tolerant heap'. There's not much info out there about the FTH but this is what I've been able to ascertain. ...
1
vote
5answers
580 views
Dealing with an object corrupting the heap
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 ...
1
vote
1answer
4k views
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 ...