HomeSort by: relevance | last modified time | path
    Searched defs:execsp (Results 1 - 3 of 3) sorted by relevancy

  /src/tests/kernel/
h_execsp.c 39 * The machine-dependent execsp.S assembly routines will initialize
52 struct execsp execsp; local in function:execsp_main
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))
    [all...]
h_execsp.h 33 * struct execsp
40 struct execsp { struct
t_signal_and_sp.c 70 struct execsp execsp; local in function:test_execsp
125 RL(nread = read(fd[0], &execsp, sizeof(execsp)));
126 ATF_CHECK_MSG((size_t)nread == sizeof(execsp),
127 "nread=%zu sizeof(execsp)=%zu",
128 (size_t)nread, sizeof(execsp));
151 if ((size_t)nread != sizeof(execsp))
154 printf("start sp @ %p\n", execsp.startsp);
155 printf("ctor sp @ %p\n", execsp.ctorsp)
    [all...]

Completed in 12 milliseconds