search for: int3_handl

Displaying 1 result from an estimated 1 matches for "int3_handl".

Did you mean: int3_handler
2004 Nov 19
1
com32: custom int3 handler
I am having problems installing a custom int3 handler from a com32 app. Here is what I have tried: void int3_handler() { put_str("int3!!!"); __asm__("iret"); } void init_handlers() { struct { unsigned long limit : 16; unsigned long base : 32; } __attribute__((packed)) idtr; __asm__("sidt (%0)" :: &qu...