| 524 | } |
| 525 | |
| 526 | void debug_on_exit_function( OBJECT * name ) |
| 527 | { |
| 528 | assert( debug_is_debugging() ); |
| 529 | --debug_depth; |
| 530 | if ( debug_depth < 0 ) |
| 531 | { |
| 532 | /* The current location is no longer valid |
| 533 | after we return from the containing function. */ |
| 534 | debug_file = NULL; |
| 535 | debug_line = 0; |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | #if NT |
| 540 | static HANDLE child_handle; |