readme
来自「一个可用在嵌入式上检查内存泄露的源代码工具」· 代码 · 共 15 行
TXT
15 行
MemLeak -- a module for debugging memory leaks in C code and other problems relatedwith malloc()-free() invocations. Distributed under GPL.The goal of this project is to provide a simple portable memory allocation debuggingmodule (based on the standard C library calls) for C programmers. The module is writtenin ANSI C. It features collecting overall memory statistic, a complete list of allocatedblocks with information by whom, where, and how much memory was allocated, a history offreed blocks, address checking based on the stored info, a SIGSEGV catcher, verbose andfiltered dumping, and other things. Currently it is slightly above 400 lines of C code.MemLeak is not a standalone program or library. You have to include this module intoyour project (read: Makefile). See memleak.c and memleak.h for instructions.Copyrigth (c) 2005 Stanislav Maslovski <s_i_m@mail.ru>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?