diff --git a/headers/private/debug/debug_support.h b/headers/private/debug/debug_support.h index 5567c7522d..d7676af9e7 100644 --- a/headers/private/debug/debug_support.h +++ b/headers/private/debug/debug_support.h @@ -64,6 +64,9 @@ typedef struct debug_symbol_iterator debug_symbol_iterator; status_t debug_create_symbol_lookup_context(team_id team, image_id image, debug_symbol_lookup_context **lookupContext); + // imageID can be -1 if all images in the target team are + // desired, otherwise a valid image id is expected. + void debug_delete_symbol_lookup_context( debug_symbol_lookup_context *lookupContext); @@ -78,8 +81,6 @@ status_t debug_lookup_symbol_address(debug_symbol_lookup_context *lookupContext, status_t debug_create_image_symbol_iterator( debug_symbol_lookup_context* lookupContext, image_id imageID, debug_symbol_iterator** _iterator); - // imageID can be -1 if all images in the target team are - // desired, otherwise a valid image id is expected. status_t debug_create_file_symbol_iterator(const char* path, debug_symbol_iterator** _iterator);