| 282 | } |
| 283 | |
| 284 | static 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 |
no test coverage detected