dl-symbols.c 571 B

123456789101112131415161718192021
  1. /*
  2. * This contains all symbols shared between
  3. * dynamic linker ld.so and into static libc
  4. *
  5. * Copyright (c) 2008 STMicroelectronics Ltd
  6. * Author: Carmelo Amoroso <carmelo.amoroso@st.com>
  7. *
  8. *
  9. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  10. *
  11. */
  12. /*
  13. * This is the start of the linked list that describes all of the files present
  14. * in the system with pointers to all of the symbol, string, and hash tables,
  15. * as well as all of the other good stuff in the binary.
  16. */
  17. #include <ldso.h>
  18. struct elf_resolve *_dl_loaded_modules = NULL;