| 272 | } |
| 273 | |
| 274 | static 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 | |
| 284 | static int add_function_breakpoint( OBJECT * name ) |
| 285 | { |
no test coverage detected