]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Declare _dl_unload_cache.
authorUlrich Drepper <drepper@redhat.com>
Mon, 5 Oct 1998 09:59:47 +0000 (09:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 5 Oct 1998 09:59:47 +0000 (09:59 +0000)
elf/dl-open.c
elf/rtld.c

index b343bc31a685717476265cc32a9a8fb22574133b..1a82c87e41986d9f947b67804fa793f5d8c81e52 100644 (file)
@@ -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;
index b9e4188d9b36c2552b3ef2952c250fa7385c05f9..8179433892507cdcfc32cd1bece9c3284d0c8d03 100644 (file)
@@ -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,