aboutsummaryrefslogtreecommitdiff
path: root/breakpoint.h
AgeCommit message (Collapse)Author
2012-08-29Move target_address_t to arch.h, rename to arch_addr_tPetr Machata
Note that the placement under arch.h is currently conceptual only. Since no backend defines ARCH_HAVE_ADDRESS_TYPES, it's actually in sysdep.h in all cases.
2012-04-24Add on_retract breakpoint callbackPetr Machata
2012-04-23Use the right process to insert breakpoints for stepping over atomic blockPetr Machata
2012-04-19Drop comment paragraphs that are not relevant anymorePetr Machata
2012-04-19Update commentary at insert_breakpointPetr Machata
2012-04-19Commentary updatesPetr Machata
2012-04-19Drop parameters that determined whether breakpoints should be enabledPetr Machata
2012-04-19Fix breakpoint cloningPetr Machata
2012-04-19Drop bp_callbacks.on_destroyPetr Machata
Unless until it turns out it's really needed, in which case drop the arch_breakpoint_data customization and convert current uses to the OO model.
2012-04-19Drop breakpoint->procPetr Machata
This assumed that the process where this breakpoint is added can also be used to turn the breakpoint on and off. That's not true, leader is not always stopped when we need it. But when we need to turn a breakpoint on or off, we are doing so in response to an event, and thus do have a stopped process in hands. Just use that.
2012-04-19Shuffle breakpoint functions aroundPetr Machata
2012-04-19Remove "enable" flag from insert_breakpointPetr Machata
2012-04-19Add a new breakpoint callback: on_continuePetr Machata
- called instead of continue_after_breakpoint, which remains the default action if the callback is not defined
2012-04-19Add breakpoint_set_callbacks, split off breakpoint_init, adjust callersPetr Machata
2012-04-19New interface breakpoint_namePetr Machata
2012-04-19Add arch_breakpoint_destroy as a counterpart to arch_breakpoint_initPetr Machata
- even though we don't destroy breakpoints at all right now
2012-04-19Make MIPS and PPC arch.h into full-fledged include file, glue in sysdep.hPetr Machata
2012-04-19Fixes in includesPetr Machata
2012-04-19Support bias, display library name on breakpointPetr Machata
- syscall support very hacky right now
2012-04-19The first crude version of tracing across librariesPetr Machata
- the patch will be sliced later
2012-04-19Remove Breakpoint typedefPetr Machata
2012-04-19Add callbacks to breakpointsPetr Machata
2012-04-19Create breakpoint.h with decls related to breakpointsPetr Machata