This commit is contained in:
Wen-Jun Zhang 2021-07-30 18:52:20 +08:00 коммит произвёл GitHub
Родитель 4f79098434
Коммит 805c388f1f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -95,6 +95,8 @@ SmartDump x86/x64 - exception and memory dump capture utility
-mn Option to captue a mini dump. Default setting is to capture full memory dumps.
-v Enable verbose output to list frames of managed callstack like code entry address of each call which can be used to set breakpoint with -a option.
-a Address of breakpoint.
-o Output path of dump(s).
@ -123,6 +125,9 @@ Examples:
- Capture 3 mini dumps for each of the exception types: NullReferenceException, SocketException and ArgumentException
SmartDump.exe -p 4567 -n 10 -de 3 -mn -f "NullReferenceException|SocketException|ArgumentException"
- Display verbose output to list frames of managed callstack. Use code entry address to set breakpoint with -a option to dump an interested call.
SmartDump.exe -p 4567 -n 20 -v
- Capture a dump based on specified address of breakpoint:
SmartDump.exe -d 1 -p 4567 -a 7a64e9d0 -n 1