How many Windows handles in use is “too many”?

前端 未结 5 1101
再見小時候
再見小時候 2021-02-03 10:49

I understand that the answer to this question may depend on registry settings and on the version of Windows, and perhaps on the amount of RAM if there is not enough memory. For

5条回答
  •  再見小時候
    2021-02-03 11:21

    The desktop heap, which is a pool of memory where the real "stuff" the handle represents lives. It's sometimes not so much how many handles you have allocated but how much memory each object under that handle is using. You can debug the heap this way. It is a pain to install.

    (this was recycled from another one of my answers)

提交回复
热议问题