From 736cc3dcb459d12d3588d0ff852019285d0fbf7b Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Wed, 1 May 2013 19:52:00 -0400 Subject: [PATCH] Move comment to correct function. --- headers/private/debug/debug_support.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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);