about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-06-12 16:21:20 +0000
committerUlrich Drepper <drepper@redhat.com>2005-06-12 16:21:20 +0000
commit6dffebd8b4ef0e3310ac97cade0d5dc33c49dadc (patch)
treef28d28cfebdabbd663ddfe139b9a2b8b445e127b
parentf13fd8e59ca585a26e2289238b9c9eed9f4940bd (diff)
downloadglibc-6dffebd8b4ef0e3310ac97cade0d5dc33c49dadc.tar.gz
glibc-6dffebd8b4ef0e3310ac97cade0d5dc33c49dadc.tar.xz
glibc-6dffebd8b4ef0e3310ac97cade0d5dc33c49dadc.zip
Remove _dl_out_of_memory declaration. (rtld_global_ro._dl_signal_error): Add new parameter.
-rw-r--r--sysdeps/generic/ldsodefs.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
index 2e3254356b..a24c2ff58e 100644
--- a/sysdeps/generic/ldsodefs.h
+++ b/sysdeps/generic/ldsodefs.h
@@ -674,7 +674,7 @@ struct rtld_global_ro
   void (*_dl_debug_printf) (const char *, ...)
        __attribute__ ((__format__ (__printf__, 1, 2)));
   int (internal_function *_dl_catch_error) (const char **, const char **,
-					    void (*) (void *), void *);
+					    bool *, void (*) (void *), void *);
   void (internal_function *_dl_signal_error) (int, const char *, const char *,
 					      const char *);
   void (*_dl_mcount) (ElfW(Addr) frompc, ElfW(Addr) selfpc);
@@ -754,10 +754,6 @@ extern char **_dl_argv_internal attribute_hidden
 # define rtld_progname _dl_argv[0]
 #endif
 
-/* The array with message we print as a last resort.  */
-extern const char _dl_out_of_memory[];
-rtld_hidden_proto (_dl_out_of_memory)
-
 /* Flag set at startup and cleared when the last initializer has run.  */
 extern int _dl_starting_up;
 weak_extern (_dl_starting_up)