You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use mimalloc on the arm64 platform. When I use kill -11 to make the process generate a coredump file, the size of this coredump file is more than double that of not using mimalloc.
The first line below is the coredump file generated using mimalloc, and the second line is the coredump file generated without mimalloc:
`
-rw-------. 1 root root 2.9G 1月 1 2024 core-perception-4598-1704038613
-rw-------. 1 root root 1023M 1月 1 2024 core-perception-4666-1704039050
`
This affects our normal debugging and use. Is there any solution?
The text was updated successfully, but these errors were encountered:
Difficult to say why this happens. May try running with the MIMALLOC_ARENA_EAGER_COMMIT=0 environment option -- this will only reserve but not yet commit virtual memory which may reduce the core dump?
I use mimalloc on the arm64 platform. When I use kill -11 to make the process generate a coredump file, the size of this coredump file is more than double that of not using mimalloc.
The first line below is the coredump file generated using mimalloc, and the second line is the coredump file generated without mimalloc:
`
-rw-------. 1 root root 2.9G 1月 1 2024 core-perception-4598-1704038613
-rw-------. 1 root root 1023M 1月 1 2024 core-perception-4666-1704039050
`
This affects our normal debugging and use. Is there any solution?
The text was updated successfully, but these errors were encountered: