Home | History | Annotate | Download | only in kernel

Lines Matching defs:execsp

39  * The machine-dependent execsp.S assembly routines will initialize
52 struct execsp execsp;
55 memset(&execsp, 0, sizeof(execsp));
56 execsp.startsp = startsp;
57 execsp.ctorsp = ctorsp;
58 execsp.mainsp = mainsp;
59 execsp.dtorsp = dtorsp;
61 nwrit = write(STDOUT_FILENO, &execsp, sizeof(execsp));
64 if ((size_t)nwrit != sizeof(execsp))
65 errx(1, "wrote %zu != %zu", (size_t)nwrit, sizeof(execsp));