struct_debug_obj_descr

Langue: en

Autres versions - même langue

Version: June 2009 (debian - 07/07/09)

Section: 9 (Appels noyau Linux)

NAME

struct_debug_obj_descr - object type specific debug description structure

SYNOPSIS

 struct debug_obj_descr {
   const char * name;
   int (* fixup_init) (void *addr, enum debug_obj_state state);
   int (* fixup_activate) (void *addr, enum debug_obj_state state);
   int (* fixup_destroy) (void *addr, enum debug_obj_state state);
   int (* fixup_free) (void *addr, enum debug_obj_state state);
 };  
 

MEMBERS

name

name of the object typee

fixup_init

fixup function, which is called when the init check fails

fixup_activate

fixup function, which is called when the activate check fails

fixup_destroy

fixup function, which is called when the destroy check fails

fixup_free

fixup function, which is called when the free check fails

AUTHOR

Thomas Gleixner <tglx@linutronix.de>

Author.