Home
last modified time | relevance | path

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

/linux-4.1.27/arch/arm64/include/asm/
Ddebug-monitors.h110 struct step_hook { struct
115 void register_step_hook(struct step_hook *hook); argument
116 void unregister_step_hook(struct step_hook *hook);
/linux-4.1.27/arch/arm64/kernel/
Ddebug-monitors.c186 static LIST_HEAD(step_hook);
189 void register_step_hook(struct step_hook *hook) in register_step_hook()
192 list_add_rcu(&hook->node, &step_hook); in register_step_hook()
196 void unregister_step_hook(struct step_hook *hook) in unregister_step_hook()
212 struct step_hook *hook; in call_step_hook()
217 list_for_each_entry_rcu(hook, &step_hook, node) { in call_step_hook()
Dkgdb.c248 static struct step_hook kgdb_step_hook = {