To find the dyld address mapping of __TEXT and __DATA for my mach-o executable I set the environment variable DYLD_PRINT_SEGMENTS=1. This logs on the console where in memory the executable is mapped.

However, I need to find the address mapping of __TEXT and __DATA internally from within my executable. Is there some API for elegantly obtaining this information?

link|improve this question
feedback

1 Answer

You can obtain this information with the getsectbyname() function from the <mach-o/getsect.h> header.

link|improve this answer
Thanks... This returns the running section data of the parent process. I found you can use getsectbynamefromheader() to get the section data for a plug-in or other process running internally. – elSnape Aug 5 '11 at 8:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.