Created Unassigned: Improve document of `disasm.jumprel` [12837]
If you need to disassemble a memory range, you should call `disasm.instruction` and `disasm.jumprel(0)` repeatedly.The documentation doesn't mentioned the detail so I used to use...
View ArticleCommented Unassigned: Let `pykd.reg` accept unicode string [12836]
Currently only bytes string is supported in `pykd.reg`, but functions like `pykd.dbgCommand` already support unicode.It'll be great if `pykd.reg` can also support unicode string as param.Comments: **...
View ArticleCommented Unassigned: Improve document of `disasm.jumprel` [12837]
If you need to disassemble a memory range, you should call `disasm.instruction` and `disasm.jumprel(0)` repeatedly.The documentation doesn't mentioned the detail so I used to use...
View ArticleSource code checked in, #87821
[0.3.x] refactored : supported new breakpoint model for kdlibcpp
View ArticleReleased: PYKD 0.3.0.4 (Apr 11, 2014)
New Features:Fully refactored core relied on the kdlibcpp Full unicode support: all functions and methods get and return unicode stringsFloat point support Removed some excess classes and functionsNew...
View ArticleUpdated Release: PYKD 0.3.0.4 (Apr 11, 2014)
New Features:Fully refactored core relied on the kdlibcppFull unicode support: all functions and methods get and return unicode stringsFloat point supportRemoved some excess classes and functionsNew...
View ArticleUpdated Wiki: Documentation
русскийPYKD 0.2. Рукводство пользователя.PYKD 0.2. TutorialPYKD 0.1. Рукводство пользователя.Pykd 0.0 documentationEnglishPYKD 0.2. DocumentationPYKD 0.3. API ReferencePYKD 0.2. API Reference
View ArticleUpdated Wiki: PYKD 0.3. API Reference
Functionsaddr64appendSymbolPathattachProcessbreakinbugCheckDatacallExtcompareMemorycontainingRecordcurrentTimedbgCommanddetachProcessdprintdprintlnexprfindMemoryRegionfindSymbolfindSymbolAndDispgetCurr...
View ArticleUpdated Wiki: Documentation
русскийPYKD 0.2. Рукводство пользователя.PYKD 0.2. TutorialEnglishPYKD 0.2. DocumentationPYKD 0.3. API ReferencePYKD 0.2. API Reference
View ArticleCreated Issue: [0.3.x] failed to get stack for Wow64 [12945]
>>> getStack()Traceback (most recent call last): File "<console>", line 1, in <module>DbgException: Call IDebugControl::GetStackTrace failedHRESULT 0x8000ffff
View ArticleEdited Issue: [0.3.x] failed to get stack for Wow64 [12945]
>>> getStack()Traceback (most recent call last): File "<console>", line 1, in <module>DbgException: Call IDebugControl::GetStackTrace failedHRESULT 0x8000ffff
View ArticleCommented Issue: [0.3.x] failed to get stack for Wow64 [12945]
getStack()Traceback (most recent call last): File "<console>", line 1, in <module>DbgException: Call IDebugControl::GetStackTrace failedHRESULT 0x8000ffffComments: ** Comment from web user:...
View ArticleNew Post: pykd in multiprocessing
pykd version 0.2.0.29-x86 I want to trace multi processes, so I have to use multiprocessingimport multiprocessing import pykd def attach(pid): pykd.attachProcess(pid)...
View ArticleNew Post: pykd in multiprocessing
1) I tried ti reproduce issue with multiprocessing and I've failed 2) Your code snippet has one serious error: when your code will be forked by multiprocessing, python run all global statements and the...
View ArticleNew Post: pykd in multiprocessing
ok, I reinstalled python2.7 x86 in win7 64, and now it works. 1. I downloaded "pykd-0.3.0.4-x64-python-2.7-setup.exe" and installed but I don't know why pykd 0.3 always gives me following...
View ArticleNew Post: pykd in multiprocessing
1) For pykd 0.3.0.4 you need call pykd.initialize() from thread where you suppose to control debugging process. 0.2.x always call it implicitly from the first thread where 'import pykd' is called. So,...
View ArticleCreated Feature: [0.3.x] how get current process debug id? [12954]
There is no such routine:getCurrentProcessId()So, we need make annoying workaround:```getProcessIdBySystemID( getProcessSystemID() )```
View Article