MCPcopy Create free account
hub / github.com/boostorg/build / add_line_breakpoint

Function add_line_breakpoint

src/engine/debugger.cpp:274–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272}
273
274static int add_line_breakpoint( OBJECT * file, int line )
275{
276 struct breakpoint elem;
277 elem.file = file;
278 elem.bound_file = NULL;
279 elem.line = line;
280 elem.status = BREAKPOINT_ENABLED;
281 return add_breakpoint( elem );
282}
283
284static int add_function_breakpoint( OBJECT * name )
285{

Callers 1

debug_add_breakpointFunction · 0.85

Calls 1

add_breakpointFunction · 0.85

Tested by

no test coverage detected