ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. This manual page is associated with the Mac OS X developer tools. The software or headers described may not be present on your Mac OS X installation until you install the developer tools package. This package is available on your Mac OS X installation DVD, and the latest versions can be downloaded from developer.apple.com. For more information about the manual page format, see the manual page for manpages(5). |
GETSEGBYNAME(3) GETSEGBYNAME(3) NAME getsegbyname - get the segment command for the named segment SYNOPSIS #include <mach-o/getsect.h> const struct segment_command *getsegbyname(const char *segname); DESCRIPTION This routine returns the segment_command structure for the named segment if it exists in the Mach-O (Mach object) executable getsegbyname(3) is linked into. Otherwise getsegbyname(3) returns NULL. It uses the link editor defined symbol _mh_execute_header and just looks through the load commands. Since these are mapped into the __TEXT segment they are read-only and thus const by default. SEE ALSO end(3), getsectbyname(3) Apple Computer, Inc. April 10, 1998 GETSEGBYNAME(3) |
|