1 #ifndef _STACK_PROFILE_H_ 2 #define _STACK_PROFILE_H_ 3 unsigned long check_stack(unsigned long *base); 4 unsigned long check_stack_start(unsigned long *base, unsigned long real_sp, 5 int id); 6 unsigned long check_stack_stop(unsigned long *base, int id); 7 unsigned long save_stack_context(char *name, int id); 8 void print_stack(int id); 9 #endif 10