Skip to content

Commit 1a46f2a

Browse files
committed
Documented the new dlMapper functions
1 parent 59683f8 commit 1a46f2a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/dlMapper/dlMapper.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,19 @@ bool dlMapper_isInited(void);
5151
*/
5252
struct loadedLibInfo* dlMapper_libInfoForAddress(const void* address);
5353

54+
/**
55+
* Returns the runtime image info for the runtime image of the given name.
56+
*
57+
* @param fileName the file name of the runtime image
58+
* @return the associated runtime image info or `NULL` if not found
59+
*/
5460
struct loadedLibInfo* dlMapper_libInfoForFileName(const char* fileName);
5561

62+
/**
63+
* Returns the loaded runtime image infos.
64+
*
65+
* @return the loaded runtime image infos
66+
*/
5667
const vector_loadedLibInfo_t* dlMapper_getLoadedLibraries(void);
5768

5869
/**

0 commit comments

Comments
 (0)