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

Function add_function_breakpoint

src/engine/debugger.cpp:284–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

282}
283
284static int add_function_breakpoint( OBJECT * name )
285{
286 struct breakpoint elem;
287 elem.file = name;
288 elem.bound_file = object_copy( name );
289 elem.line = -1;
290 elem.status = BREAKPOINT_ENABLED;
291 return add_breakpoint( elem );
292}
293
294/*
295 * Checks whether there is an active breakpoint at the

Callers 1

debug_add_breakpointFunction · 0.85

Calls 2

object_copyFunction · 0.85
add_breakpointFunction · 0.85

Tested by

no test coverage detected