Home | History | Annotate | Download | only in syscallemu

Lines Matching defs:sce

60 syscallemu_setsce(struct proc *p, struct syscallemu_data *sce)
62 proc_setspecific(p, syscallemu_data_key, sce);
71 struct syscallemu_data *sce = priv;
73 kmem_free(sce, sizeof(*sce));
94 struct syscallemu_data *sce;
102 sce = kmem_alloc(sizeof(*sce), KM_SLEEP);
103 sce->sce_user_start = user_start;
104 sce->sce_user_end = user_end;
105 sce->sce_md_syscall = md_syscallemu(p);
106 KASSERT(sce->sce_md_syscall != NULL);
109 syscallemu_setsce(p, sce);