Home | History | Annotate | Download | only in xxboot

Lines Matching defs:aout

99 		struct exec aout;
137 read(io, (void *)&hdr.aout, sizeof(hdr.aout));
138 if (N_GETMAGIC(hdr.aout) == OMAGIC && N_GETMID(hdr.aout) == MID_VAX) {
140 entry = hdr.aout.a_entry;
141 if (entry < sizeof(hdr.aout))
142 entry = sizeof(hdr.aout);
143 read(io, (void *) entry, hdr.aout.a_text + hdr.aout.a_data);
144 memset((void *) (entry + hdr.aout.a_text + hdr.aout.a_data),
145 0, hdr.aout.a_bss);
150 read(io, (char *)&hdr.elf + sizeof(hdr.aout),
151 sizeof(hdr.elf) - sizeof(hdr.aout));