From a881e0a074e448f282e44b1d172b46199697755b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 24 Oct 2000 01:02:15 +0000 Subject: Update. * include/link.h (struct link_map): New bit field l_faked. * elf/dl-deps.c: Use l_faked field in struct link_map instead of the magic l_opencount==0. * elf/dl-load.c: Likewise. * elf/dl-version.c: Likewise. * elf/rtld.c: Likewise. --- include/link.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/link.h b/include/link.h index 4c04099891..bb931f2607 100644 --- a/include/link.h +++ b/include/link.h @@ -180,6 +180,8 @@ struct link_map to by `l_phdr' is allocated. */ unsigned int l_soname_added:1; /* Nonzero if the SONAME is for sure in the l_libname list. */ + unsigned int l_faked:1; /* Nonzero if this is a faked descriptor + without associated file. */ /* Array with version names. */ unsigned int l_nversions; @@ -202,7 +204,7 @@ struct link_map ElfW(Addr) l_map_start, l_map_end; /* This is an array defining the lookup scope for this link map. - There are at most three different scope lists. */ + There are at most three different scope lists. */ struct r_scope_elem *l_scope[4]; /* A similar array, this time only with the local scope. This is -- cgit v1.2.3