Home | History | Annotate | Download | only in elf2aout

Lines Matching defs:gap

365 	/* If there is a gap between text and data, we'll fill it when we copy
414 uint32_t gap = ph[i].p_vaddr - cur_vma;
416 if (gap > 65536)
418 "Intersegment gap (%u bytes) too large", gap);
420 warnx("%u byte intersegment gap", gap);
422 while (gap) {
424 (gap > sizeof obuf
425 ? sizeof obuf : gap));
428 "Error writing gap");
429 gap -= (uint32_t)count;