-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Because of the work needs, I need to understand PartitionAlloc, this project is very good, can you provide more detailed usage? I don't really understand how to use it. #1
Comments
Have you ever used Windows Debugger? This is a debugger extension for Windows Debugger. Getting Started with WinDbg (User-Mode) - Windows drivers | Microsoft Docs I also wrote the following article about PartitionAlloc before. It might be helpful if Google translate works well. |
thanks!I know a little about windbg, but how to install it into windbg? |
Can it be used directly to debug release chrome?thanks! |
Yes, you need to build this project first. Build steps are easy. Download the latest Visual Studio Community (or other editions if you can afford to pay for it), open "x86/x64 Native Tools Command Prompt", and run Loading Debugger Extension DLLs - Windows drivers | Microsoft Docs You don't need to build Chromium on your own. This works with the official Chrome/ChromeCanary. To do that, you need to get the private symbol. Please check the section "Symbol server" in the following page. Actually if you use your private Chromium, you need to modify the extension's code because the name of Chromium's core module is different and I hardcoded the name as chrome_child.dll. Debugging Chromium on Windows - The Chromium Projects The page above introduces some parameters for chrome.exe that might be helpful, but it's just optional. Just launching Chrome as usual, and attaching your debugger to a render process is good enough. I have not used this extension for a while. Probably it doesn't work with the latest Chrome now. I'll check and update if needed. |
I've updated PartitionAlloc commands so that you can use it to debug Chrome 70. |
thanks! |
Because of the work needs, I need to understand PartitionAlloc, this project is very good, can you provide more detailed usage? I don't really understand how to use it.
thanks!
The text was updated successfully, but these errors were encountered: