Skip to content
Snippets Groups Projects
Forked from redox-os / relibc
Source project has a limited visibility.
  • Ahmed Abd El Mawgood's avatar
    cc7ff54d
    Catch circular dependency when resolving loading shared libraries · cc7ff54d
    Ahmed Abd El Mawgood authored
    This patch implements tree-based data-structure for catching circular
    dependency where libA.so will depen on arbitrarily long chain (including
    zero length) of libNs.so one of which will depend on libA.so again. The
    main intention of this patch was merely capturing the dependency tree to
    prioterize which Elf's .init_array and which .fini_array should run
    first, but as a side effect it can capture circular dependencies as well.
    cc7ff54d
    History
    Catch circular dependency when resolving loading shared libraries
    Ahmed Abd El Mawgood authored
    This patch implements tree-based data-structure for catching circular
    dependency where libA.so will depen on arbitrarily long chain (including
    zero length) of libNs.so one of which will depend on libA.so again. The
    main intention of this patch was merely capturing the dependency tree to
    prioterize which Elf's .init_array and which .fini_array should run
    first, but as a side effect it can capture circular dependencies as well.