From b54df7ec544e86c33e534a67bb9e38250467df4e Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Fri, 3 Sep 2004 21:17:10 +0000 Subject: First attempt to fix the INIT/FINI ordering. Fingers crossed :) --- ldso/include/ldso.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ldso/include/ldso.h') diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h index 8248b1574..37ec439cb 100644 --- a/ldso/include/ldso.h +++ b/ldso/include/ldso.h @@ -31,6 +31,13 @@ #include #include +/* For INIT/FINI handling */ +struct init_fini_list { + struct init_fini_list *next; + struct init_fini_list *prev; + struct elf_resolve *tpnt; +}; + /* Global variables used within the shared library loader */ extern char *_dl_library_path; /* Where we look for libraries */ extern char *_dl_preload; /* Things to be loaded before the libs */ -- cgit v1.2.3