How to avoid running out of memory in high memory usage application? C / C++

前端 未结 15 2203
天命终不由人
天命终不由人 2021-02-19 14:04

I have written a converter that takes openstreetmap xml files and converts them to a binary runtime rendering format that is typically about 10% of the original size. Input file

15条回答
  •  别那么骄傲
    2021-02-19 14:33

    Have you checked to ensure you aren't leaking memory anywhere?

    Since your program is portable to Linux, I suggest running it under Valgrind to make sure.

提交回复
热议问题