What is Windows 7's Fault Tolerant Heap?

前端 未结 1 1334
日久生厌
日久生厌 2020-12-17 03:09

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 frequent

相关标签:
1条回答
  • 2020-12-17 03:22

    Fault Tolerant Heap is a layer over the heap that defends against common heap errors, such as heap overruns, double frees, and so on. To my knowledge, there is only one FTH shim - not multiple for each mitigation. http://msdn.microsoft.com/en-us/library/dd744764(VS.85).aspx describes how you can monitor if FTH is being enabled for an application via the event log.

    I don't believe MS has published the exact heuristic that will enable the FTH, but yes, there is a heuristic.

    0 讨论(0)
提交回复
热议问题