From: Ulrich Drepper Date: Mon, 5 Oct 1998 09:59:47 +0000 (+0000) Subject: Declare _dl_unload_cache. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d61137008f39f8e5e4af4a743a65bb0459de055b;p=thirdparty%2Fglibc.git Declare _dl_unload_cache. --- diff --git a/elf/dl-open.c b/elf/dl-open.c index b343bc31a68..1a82c87e419 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -29,6 +29,9 @@ extern ElfW(Addr) _dl_sysdep_start (void **start_argptr, ElfW(Addr) *user_entry)); weak_extern (_dl_sysdep_start) +/* This function is used to unload the cache file if necessary. */ +extern void _dl_unload_cache (void); + extern int __libc_multiple_libcs; /* Defined in init-first.c. */ extern int __libc_argc; diff --git a/elf/rtld.c b/elf/rtld.c index b9e4188d9b3..81794338925 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -39,6 +39,9 @@ extern ElfW(Addr) _dl_sysdep_start (void **start_argptr, ElfW(Addr) *user_entry)); extern void _dl_sysdep_start_cleanup (void); +/* This function is used to unload the cache file if necessary. */ +extern void _dl_unload_cache (void); + /* System-dependent function to read a file's whole contents in the most convenient manner available. */ extern void *_dl_sysdep_read_whole_file (const char *filename,