taglinefilesource code
ex186fs/exec.cstruct exec ex;
ex213fs/exec.cex = *(struct exec *) bh->b_data;
ex215fs/exec.cif (N_MAGIC(ex) != ZMAGIC || ex.a_trsize ||
ex216fs/exec.cex.a_drsize || ex.a_entry & 0xfff ||
ex217fs/exec.cinode->i_size < ex.a_text+ex.a_data+ex.a_syms+N_TXTOFF(ex)) {
ex222fs/exec.ccurrent->libraries[libnum].start = ex.a_entry;
ex223fs/exec.coffset = (ex.a_data + ex.a_text + 0xfff) & 0xfffff000;
ex225fs/exec.ccurrent->libraries[libnum].bss = ex.a_bss;
ex226fs/exec.coffset += ex.a_entry;
ex227fs/exec.czeromap_page_range(offset, ex.a_bss, PAGE_COPY);
ex429fs/exec.cstruct exec ex;
ex492fs/exec.cex = *((struct exec *) buf);    /* exec-header */
ex566fs/exec.cif ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC) ||
ex567fs/exec.cex.a_trsize || ex.a_drsize ||
ex568fs/exec.cinode->i_size < ex.a_text+ex.a_data+ex.a_syms+N_TXTOFF(ex)) {
ex572fs/exec.cif (N_TXTOFF(ex) != BLOCK_SIZE && N_MAGIC(ex) != OMAGIC) {
ex622fs/exec.cp += change_ldt(ex.a_text,page);
ex625fs/exec.ccurrent->brk = ex.a_bss +
ex626fs/exec.c(current->end_data = ex.a_data +
ex627fs/exec.c(current->end_code = ex.a_text));
ex632fs/exec.cif (N_MAGIC(ex) == OMAGIC) {
ex633fs/exec.cread_exec(inode, 32, (char *) 0, ex.a_text+ex.a_data);
ex636fs/exec.cread_exec(inode, 1024, (char *) 0, ex.a_text+ex.a_data);
ex640fs/exec.czeromap_page_range((ex.a_text + ex.a_data + 0xfff) & 0xfffff000,ex.a_bss, PAGE_COPY);
ex641fs/exec.ceip[0] = ex.a_entry;    /* eip, magic happens :-) */
ex78fs/select.cint do_select(int n, fd_set *in, fd_set *out, fd_set *ex,
ex91fs/select.c!FD_ISSET(i, ex))
ex123fs/select.cif (FD_ISSET(i,ex) && check(SEL_EX,wait,current->filp[i])) {
ex192fs/select.cfd_set res_ex, ex, *exp;
ex211fs/select.c(i = get_fd_set(n, exp, &ex))) return i;
ex224fs/select.ci = do_select(n, &in, &out, &ex, &res_in, &res_out, &res_ex);
ex90tools/build.cstruct exec *ex = (struct exec *)buf;
ex191tools/build.cif (N_MAGIC(*ex) != ZMAGIC)
ex193tools/build.csz = N_SYMOFF(*ex) - GCC_HEADER + 4;
ex56zBoot/xtract.cstruct exec *ex = (struct exec *)buf;
ex65zBoot/xtract.cif (N_MAGIC(*ex) != ZMAGIC)
ex68zBoot/xtract.csz = N_SYMOFF(*ex) - GCC_HEADER + 4;  /* +4 to get the same result than tools/build */