Memory leak in the Win64 Delphi RTL during thread shutdown?

后端 未结 3 1831
抹茶落季
抹茶落季 2021-01-31 02:46

For a long time I’ve noticed that the Win64 version of my server application leak memory. While the Win32 version works fine with a relatively stable memory footprint, the memor

3条回答
  •  佛祖请我去吃肉
    2021-01-31 03:28

    A very simple work around is to re-use the thread and not create and destroy them. Threads are pretty expensive, you'll probably get a perf boost too... Kudos on the debugging though...

提交回复
热议问题