diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-04-30 07:48:02 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-04-30 07:48:02 +0000 |
| commit | 2001f720ceb031d63c30e7d075d45820e25c6704 (patch) | |
| tree | 9de8d5b2a550267f1d51ecf82ee0a4afc659ac99 /libexec/rtld-elf/rtld.h | |
| parent | bbba152305b78197bd2f0413664b4c2083975734 (diff) | |
Notes
Diffstat (limited to 'libexec/rtld-elf/rtld.h')
| -rw-r--r-- | libexec/rtld-elf/rtld.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/rtld-elf/rtld.h b/libexec/rtld-elf/rtld.h index cbd7d8bb06e0..c5343a82984f 100644 --- a/libexec/rtld-elf/rtld.h +++ b/libexec/rtld-elf/rtld.h @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: rtld.h,v 1.3 1998/03/06 14:00:09 jdp Exp $ + * $Id: rtld.h,v 1.1.1.1 1998/03/07 19:24:35 jdp Exp $ */ #ifndef RTLD_H /* { */ @@ -30,6 +30,7 @@ #include <sys/types.h> +#include <link.h> #include <elf.h> #include <stddef.h> @@ -108,6 +109,8 @@ typedef struct Struct_Obj_Entry { bool rtld; /* True if this is the dynamic linker */ bool textrel; /* True if there are relocations to text seg */ bool symbolic; /* True if generated with "-Bsymbolic" */ + + struct link_map linkmap; /* for GDB */ } Obj_Entry; #define RTLD_MAGIC 0xd550b87a |
