I want figure out the call sequence and functions to kernel32.dll
in a function example() in example.DLL.
In windbg, how to set breakpoint on all functions in kernel32.dll?
I tried bm kernel32!* , but seems not work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would not do just as stated. Of course it is possible, but if done with
bm /a kernel32!*you inadvertently set bps also on data symbols (as opposed to actual functions). In your casewt– trace and watch data (you can look it up in the debugger.chm provided with your windbg package) might be what you’re after.