-
Notifications
You must be signed in to change notification settings - Fork 145
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
post handler in kprobe would miss #55
Comments
When setting breakpoint at instruction in user text, this issue also happens. |
Fixes f9micro#55 Raise the execution priority to be the highest among other irq handlers.
Hi @georgekang , thanks for your noticing. |
Hi @arcbbb , thanks for your help.
|
When sampling is enabled, you can sometimes get following result.
|
Thank your patch. I see the problem that single-step brings. |
Sometimes, the
stack[REG_PC]
(in kernel/kprobes.c) wasnvic_handler52
, rather than not the next instruction of breakpoint. The is because the priority of UART is higher than ktimer_handler, the location of breakpoint.The text was updated successfully, but these errors were encountered: