Home
last modified time | relevance | path

Searched refs:execsw (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/sys/
H A Dexec.h62 struct execsw { struct
93 int exec_register(const struct execsw *);
94 int exec_unregister(const struct execsw *);
110 struct execsw *exec = (struct execsw *)data; \
/freebsd/sys/kern/
H A Dkern_exec.c214 static const struct execsw **execsw; variable
664 for (i = 0; error == -1 && execsw[i]; ++i) { in do_execve()
665 if (execsw[i]->ex_imgact == NULL) in do_execve()
667 error = (*execsw[i]->ex_imgact)(imgp); in do_execve()
1922 exec_register(const struct execsw *execsw_arg) in exec_register()
1924 const struct execsw **es, **xs, **newexecsw; in exec_register()
1927 if (execsw) in exec_register()
1928 for (es = execsw; *es; es++) in exec_register()
1932 if (execsw) in exec_register()
1933 for (es = execsw; *es; es++) in exec_register()
[all …]
H A Dimgact_shell.c248 static struct execsw shell_execsw = {
H A Dimgact_aout.c362 static struct execsw aout_execsw = {
H A Dimgact_binmisc.c777 static struct execsw imgact_binmisc_execsw = {
H A Dimgact_elf.c2958 static struct execsw __elfN(execsw) = {
2962 EXEC_SET(ELF_ABI_ID, __elfN(execsw));
/freebsd/sys/i386/linux/
H A Dimgact_linux.c231 static struct execsw linux_execsw = { exec_linux_imgact, "Linux a.out" };