Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Clarified where to put MEMCHECK_GLOBAL_VARS in the file README | 758b15743a21c4d13557c1e050d58c54bf227990 | Josiah Mullins | 2023-12-01 17:36:07 |
memcheck.h: Added calloc wrapper macro | 2af63cb7dea96120fa146f9e0e8e3ba4866038a6 | Josiah Mullins | 2023-11-03 16:09:35 |
Fixed "multiple definitions for fp_mem_log" error when using library across multiple .c files | 923a622ea28c43c4636bbc24eb15c316993bfcd3 | Josiah Mullins | 2023-10-30 18:00:02 |
README: Updated README to reflect name change | 20b55a22dba0975f17b3e173e9a693cc36e00484 | Josiah Mullins | 2023-10-28 12:52:24 |
moved mem_check.h to memcheck.h to reflect macro name change | d75193eeb7855679bf15fd9e896cef36caae2213 | Josiah Mullins | 2023-10-23 19:34:53 |
mem_check.h: Renamed all macros to be in the format MEMCHECK_name | dfc0166e38d3fce58b03033507d32dee23ca9feb | Josiah Mullins | 2023-10-23 19:33:14 |
mem_check.h: Added support for typecasting the declarations. | 37dc1d6bdd6f4bf770d41146c6f614059b9f1d02 | Josiah Mullins | 2023-10-05 18:11:09 |
Moved mem_check.c to mem_check_scanner.c | 4a6548f5dd52c419dfa3b46b53dc8ff17f044203 | Josiah Mullins | 2023-10-05 18:04:42 |
README: Added instructions to include init and close calls in program. | 9ceea9c4ae0c169a69fc1a0840402bfc2a2843cc | Josiah Mullins | 2023-10-05 18:02:22 |
Fixed bug with allocate memory and added include guards. | 01034908e928b996abf6b92804a9f68112617af1 | Josiah_Mullins_E6440 | 2020-02-14 17:53:16 |
master: initial commit of mem_check | ede7de7550d3243f98279b5bd69eba18748105fa | Josiah_Mullins_E6440 | 2020-02-12 17:42:39 |
File | Lines added | Lines deleted |
---|---|---|
README | 3 | 2 |
File README changed (mode: 100644) (index 4b6ed67..fd5b575) | |||
... | ... | handling function calls. Then, add the | |
27 | 27 | line "MEMCHECK_CLOSE();" after your | line "MEMCHECK_CLOSE();" after your |
28 | 28 | last memory handling call. Lastly, | last memory handling call. Lastly, |
29 | 29 | add the line MEMCHECK_GLOBAL_VARS; | add the line MEMCHECK_GLOBAL_VARS; |
30 | with your global variables in your | ||
31 | c files (not h files). | ||
30 | with your global variables in the | ||
31 | file with your main function (do not | ||
32 | put this macro anywhere else). | ||
32 | 33 | ||
33 | 34 | If you recompile your program and run it you | If you recompile your program and run it you |
34 | 35 | should see a new file mem_check.log | should see a new file mem_check.log |