/src/sys/rump/kern/lib/libsys_linux/ |
sys_linux_component.c | 80 __weak_alias(lwp_find,rumplinux__stub);
|
/src/sys/kern/ |
sys_lwp.c | 218 if ((t = lwp_find(p, SCARG(uap, target))) == NULL) { 263 if (lwp_find(p, SCARG(uap, target)) == NULL) { 294 if ((t = lwp_find(p, SCARG(uap, target))) == NULL) { 320 if ((t = lwp_find(p, SCARG(uap, target))) == NULL) { 394 if ((t = lwp_find(p, ksi.ksi_lid)) == NULL) 425 * We can't use lwp_find() here because the target might 694 if ((t = lwp_find(p, target)) == NULL) { 731 if ((t = lwp_find(p, target)) == NULL) {
|
subr_time.c | 189 l = lid == 0 ? curlwp : lwp_find(p, lid);
|
sys_process_lwpstatus.c | 93 *lt = lwp_find(t, lid);
|
sys_ptrace_common.c | 719 *lt = lwp_find(t, tmp); 785 *lt = lwp_find(t, tmp); 1267 lt = lwp_find(t, tmp);
|
kern_sig.c | 1237 if ((l = lwp_find(p, ksi->ksi_lid)) == NULL) 1400 l = lwp_find(p, lid);
|
sys_futex.c | 1972 l = lwp_find(p, lwpid);
|
kern_lwp.c | 1519 lwp_find(struct proc *p, lwpid_t id) function in typeref:struct:lwp *
|
/src/sys/sys/ |
lwp.h | 370 lwp_t * lwp_find(proc_t *, int);
|
/src/sys/rump/librump/rumpkern/ |
lwproc.c | 81 lwp_find(struct proc *p, lwpid_t id) function in typeref:struct:lwp *
|
/src/sys/compat/linux/common/ |
linux_signal.c | 785 if ((t = lwp_find(p, ksi.ksi_lid)) == NULL)
|