Skip to content

Commit

Permalink
(struct link_map): Add l_scope_mem and l_scope_max elements. Change l…
Browse files Browse the repository at this point in the history
…_scope to be a pointer only.
  • Loading branch information
Ulrich Drepper committed Sep 7, 2001
1 parent 7d25e92 commit b98e518
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/link.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,13 @@ struct link_map
need not be the same as l_addr. */
ElfW(Addr) l_map_start, l_map_end;

/* Default array for 'l_scope'. */
struct r_scope_elem *l_scope_mem[4];
/* Size of array allocated for 'l_scope'. */
size_t l_scope_max;
/* This is an array defining the lookup scope for this link map.
There are at most three different scope lists. */
struct r_scope_elem *l_scope[4];
struct r_scope_elem **l_scope;

/* A similar array, this time only with the local scope. This is
used occasionally. */
Expand Down

0 comments on commit b98e518

Please sign in to comment.