Home
last modified time | relevance | path

Searched refs:step_hook (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/arch/arm64/include/asm/
Ddebug-monitors.h98 struct step_hook { struct
103 void register_step_hook(struct step_hook *hook); argument
104 void unregister_step_hook(struct step_hook *hook);
/linux-4.4.14/arch/arm64/kernel/
Ddebug-monitors.c188 static LIST_HEAD(step_hook);
191 void register_step_hook(struct step_hook *hook) in register_step_hook()
194 list_add_rcu(&hook->node, &step_hook); in register_step_hook()
198 void unregister_step_hook(struct step_hook *hook) in unregister_step_hook()
214 struct step_hook *hook; in call_step_hook()
219 list_for_each_entry_rcu(hook, &step_hook, node) { in call_step_hook()
Dkgdb.c248 static struct step_hook kgdb_step_hook = {