In Linux, Mtrace is used to check program memory overflow-general Linux technology-Linux programming and kernel information. The following is a detailed description. You may encounter problems such as memory overflow when writing complex programs with many pointers. Debugging is also quite tiring. In fact, there is a tool in Linux that can be used for debugging. This is Mtrace. Mtrace can detect memory allocation and leakage failures. Next, let's take a look at its usage.
There are four basic steps to debug a program using Mtrace. Some auxiliary function functions in the gnu c function library are required.
1. Include the header file in the program to be tracked, and include a function call: mtrace () at the beginning of the main () function (). Mtrace () is called at the beginning of the main function. Therefore, mtrace can trace and analyze all memory allocation and release operations after the process.
2. Define an environment variable to indicate a file. This file is used to output log information. Example:
$ Export MALLOC_TRACE = mymemory. log
3. The program runs normally. The memory allocation and release operations in the program can be recorded.
4. Use mtrace to analyze log files. For example:
$ Mtrace testmem $ MALLOC_TRACE
The following is an example.