Debugging Tools for Windows (x64)和Debugging Tools for Windows (x86) 微软Debugging Tools for Windows工具,简称windbg,查看dmp文件,调试驱动程序、应用程序等。
2019-12-21 22:13:50 32.1MB windbg
1
Introduction The usual implementation of malloc and free are unforgiving to errors in their callers' code, including cases where the programmer overflows an array, forgets to free memory, or frees a memory block twice. This often does not affect the program immediately, waiting until the corrupted memory is used later (in the case of overwrites) or gradually accumulating allocated but unused blocks. Thus, debugging can be extremely difficult. In this assignment, you will write a wrapper for the malloc package that will catch errors in the code that calls malloc and free. The skills you will have learned upon the completion of this exercise are pointer arithmetic and a greater understanding of the consequences of subtle memory mistakes. Logistics Unzip debugging_malloc.zip into an empty directory. The files contained are as follows: File(s): Function: debugmalloc.c Contains the implementation of the three functions you will be writing. This is the one file you will be editing and handing in. debugmalloc.h Contains the declaration of the functions, as well as the macros that will call them. driver.c Contains main procedure and the code that will be calling the functions in the malloc package dmhelper.c, dmhelper.h Contain the helper functions and macros that you will be calling from your code grader.pl Perl script that runs your code for the various test cases and gives you feedback based on your current code debugmalloc.dsp Exercise 3 project file debugmalloc.dsw Exercise 3 workspace file tailor.h, getopt.c, getopt.h Tools that are used only by the driver program for I/O purposes. You will not need to know what the code in these files do. Others Required by Visual C++. You do not need to understand their purpose Specification Programs that use this package will call the macros MALLOC and FREE. MALLOC and FREE are used exactly the same way as the malloc() and free() functions in the standard C malloc package. That is, the li
2019-12-21 21:00:53 2KB Debugging Malloc Memory Errors
1
Debugging Tools for Windows (x64) windbg ntsd cdb
2019-12-21 20:05:08 16.72MB windbg
1
Windows Kits 开发工具安装包
2019-12-21 19:48:13 974KB WindowsKits Debugging tool
1
RayWenderlich 出版的關於在apple 平台上開發除錯及逆向工程的書 ios 12, xcode 10, swift 4.2
2019-12-21 19:44:37 7.94MB iOS LLVM Debug Reverse
1
Debugging with gdb中文版,整理出目录结构,方便阅读。
2019-12-21 19:36:17 1.09MB gdb 中文版 调试 linux
1
可用于qt的在windows下的调试安装后要在qt里指定到sdb.exe即可
2014-05-29 00:00:00 18.38MB 调试 工具 qt
1