Home | History | Annotate | Download | only in syscallemu

Lines Matching defs:md_syscall

52 	void (*md_syscall)(struct trapframe *, struct lwp *, uint32_t) = NULL;
69 md_syscall = NULL;
71 md_syscall = sce->sce_md_syscall;
74 md_syscall = p->p_md.md_syscall;
77 if (md_syscall == NULL) {
89 KASSERT(md_syscall != NULL);
90 md_syscall(frame, l, insn);
95 * Set p_md.md_syscall to our syscall filter, and return a pointer to the
103 osyscall = p->p_md.md_syscall;
104 p->p_md.md_syscall = arm_syscall_emu;