X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fbreakpoint.h;h=76317a5e56abc6bba40d2e163f48ba2cb41bb203;hb=c8617f57d0413beb2890e94dabe227cef9c5ddad;hp=798ae216ffede2df371423166d04d817072d0c89;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/runtime/breakpoint.h b/src/runtime/breakpoint.h index 798ae21..76317a5 100644 --- a/src/runtime/breakpoint.h +++ b/src/runtime/breakpoint.h @@ -12,15 +12,18 @@ #ifndef _BREAKPOINT_H_ #define _BREAKPOINT_H_ -extern unsigned long breakpoint_install(lispobj code_obj, int pc_offset); +extern unsigned int breakpoint_install(lispobj code_obj, int pc_offset); extern void breakpoint_remove(lispobj code_obj, - int pc_offset, - unsigned long orig_inst); + int pc_offset, + unsigned int orig_inst); extern void breakpoint_do_displaced_inst(os_context_t *context, - unsigned long orig_inst); -extern void handle_breakpoint(int signal, siginfo_t *info, - os_context_t *context); -extern void *handle_function_end_breakpoint(int signal, siginfo_t *info, - os_context_t *context); + unsigned int orig_inst); +extern void handle_breakpoint(os_context_t *context); +extern void *handle_fun_end_breakpoint(os_context_t *context); +extern void handle_single_step_trap (os_context_t *context, int kind, + int register_offset); + +extern void handle_single_step_trap(os_context_t *context, int kind, + int register_offset); #endif