diff options
Diffstat (limited to 'ldso/include/dl-hash.h')
| -rw-r--r-- | ldso/include/dl-hash.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/ldso/include/dl-hash.h b/ldso/include/dl-hash.h index e5f9f8806..d5c63fa28 100644 --- a/ldso/include/dl-hash.h +++ b/ldso/include/dl-hash.h @@ -89,6 +89,13 @@ struct elf_resolve {     * we don't have to calculate it every time, which requires a divide */    unsigned long data_words;  #endif + +#ifdef __FDPIC__ +  /* Every loaded module holds a hashtable of function descriptors of +     functions defined in it, such that it's easy to release the +     memory when the module is dlclose()d.  */ +  struct funcdesc_ht *funcdesc_ht; +#endif  };  #define RELOCS_DONE	    0x000001 | 
