Searched refs:next_load (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/libexec/ld.so/
H A Dlibrary.c103 struct load_list *next_load, *load_list = NULL; local
255 next_load = _dl_calloc(1, sizeof(struct load_list));
256 if (next_load == NULL)
258 next_load->next = load_list;
259 load_list = next_load;
260 next_load->start = start;
261 next_load->size = size;
262 next_load->prot = PFLAGS(phdp->p_flags);
H A Dloader.c518 struct load_list *next_load, *load_list = NULL; local
597 next_load = _dl_calloc(1, sizeof(struct load_list));
598 if (next_load == NULL)
600 next_load->next = load_list;
601 load_list = next_load;
602 next_load->start = (char *)TRUNC_PG(phdp->p_vaddr) + exe_loff;
603 next_load->size = (phdp->p_vaddr & align) + phdp->p_filesz;
604 next_load->prot = PFLAGS(phdp->p_flags);
605 cur_exec_end = (Elf_Addr)next_load->start + next_load
[all...]

Completed in 72 milliseconds