/freebsd/include/ |
H A D | proc_service.h | 49 ps_err_e ps_lcontinue(struct ps_prochandle *, lwpid_t); 50 ps_err_e ps_lgetfpregs(struct ps_prochandle *, lwpid_t, prfpregset_t *); 51 ps_err_e ps_lgetregs(struct ps_prochandle *, lwpid_t, prgregset_t); 52 ps_err_e ps_lsetfpregs(struct ps_prochandle *, lwpid_t, const prfpregset_t *); 53 ps_err_e ps_lsetregs(struct ps_prochandle *, lwpid_t, const prgregset_t); 55 ps_err_e ps_lgetxmmregs (struct ps_prochandle *, lwpid_t, char *); 56 ps_err_e ps_lsetxmmregs (struct ps_prochandle *, lwpid_t, const char *); 58 ps_err_e ps_lstop(struct ps_prochandle *, lwpid_t); 59 ps_err_e ps_linfo(struct ps_prochandle *, lwpid_t, void *);
|
/freebsd/lib/libthread_db/ |
H A D | libpthread_db.c | 46 static void pt_unmap_lwp(const td_thragent_t *ta, lwpid_t lwp); 225 lwpid_t lwp; in pt_ta_map_id2thr() 295 pt_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwp, td_thrhandle_t *th) in pt_ta_map_lwp2thr() 298 lwpid_t lwp1; in pt_ta_map_lwp2thr() 444 lwpid_t lwp; in pt_dbsuspend() 474 ret = ps_pread(ta->ph, ptr, &lwp, sizeof(lwpid_t)); in pt_dbsuspend() 580 lwpid_t lwp; in pt_thr_old_get_info() 616 &info->ti_lid, sizeof(lwpid_t)); in pt_thr_old_get_info() 626 offsetof(struct kse_thr_mailbox, tm_lwp), &lwp, sizeof(lwpid_t)); in pt_thr_old_get_info() 680 lwpid_t lwp; in pt_thr_getxmmregs() [all …]
|
H A D | kse.h | 64 lwpid_t tm_lwp; /* kernel thread UTS runs on */ 85 lwpid_t km_lwp; /* kernel thread UTS runs on */
|
H A D | thread_db_int.h | 43 lwpid_t ti_lid; 71 td_err_e (*to_ta_map_lwp2thr)(const td_thragent_t *, lwpid_t,
|
H A D | thread_db.h | 185 lwpid_t ti_lid; 218 td_err_e td_ta_map_lwp2thr(const td_thragent_t *, lwpid_t, td_thrhandle_t *);
|
H A D | libpthread_db.h | 46 lwpid_t lwp;
|
/freebsd/sys/kern/ |
H A D | kern_thread.c | 229 static lwpid_t 232 static lwpid_t trytid; in tid_alloc() 233 lwpid_t tid; in tid_alloc() 256 tid_free_locked(lwpid_t rtid) in tid_free_locked() 258 lwpid_t tid; in tid_free_locked() 270 tid_free(lwpid_t rtid) in tid_free() 279 tid_free_batch(lwpid_t *batch, int n) in tid_free_batch() 294 lwpid_t tab[16]; 540 lwpid_t tid0; in threadinit() 782 lwpid_t tid; in thread_alloc() [all …]
|
H A D | kern_thr.c | 78 suword_lwpid(void *addr, lwpid_t lwpid) 420 ttd = tdfind((lwpid_t)uap->id, p->p_pid); in sys_thr_kill() 474 ttd = tdfind((lwpid_t)uap->id, uap->pid); in sys_thr_kill2() 566 ttd = tdfind((lwpid_t)uap->id, p->p_pid); in sys_thr_wake() 597 ttd = tdfind((lwpid_t)uap->id, p->p_pid); in sys_thr_set_name()
|
/freebsd/lib/libthr/thread/ |
H A D | thr_affinity.c | 44 lwpid_t tid; in _pthread_setaffinity_np() 67 lwpid_t tid; in _pthread_getaffinity_np()
|
H A D | thr_kern.c | 109 _thr_getscheduler(lwpid_t lwpid, int *policy, struct sched_param *param) in _thr_getscheduler() 122 _thr_setscheduler(lwpid_t lwpid, int policy, const struct sched_param *param) in _thr_setscheduler()
|
/freebsd/usr.bin/gcore/ |
H A D | elfcore.c | 118 static void elf_putregnote(int, lwpid_t, struct sbuf *); 337 lwpid_t *tids; in elf_putnotes() 404 elf_putregnote(int type, lwpid_t tid, struct sbuf *sb) in elf_putregnote() 680 lwpid_t tid; in elf_note_x86_xstate() 685 tid = *(lwpid_t *)arg; in elf_note_x86_xstate() 708 lwpid_t tid; in elf_note_powerpc_vmx() 713 tid = *(lwpid_t *)arg; in elf_note_powerpc_vmx() 732 lwpid_t tid; in elf_note_powerpc_vsx() 737 tid = *(lwpid_t *)arg; in elf_note_powerpc_vsx()
|
/freebsd/contrib/netbsd-tests/lib/libc/sys/ |
H A D | t_lwp_create.c | 59 volatile lwpid_t the_lwp_id = 0; 82 lwpid_t lid; \ 106 lwpid_t lid; in ATF_TC_BODY()
|
H A D | t_setrlimit.c | 479 func(lwpid_t *id) in func() 489 lwpid_t lwpid; in ATF_TC_BODY()
|
/freebsd/sys/sys/ |
H A D | ptrace.h | 120 lwpid_t pl_lwpid; /* LWP described. */ 148 lwpid_t pl_lwpid; /* LWP described. */
|
H A D | rtprio.h | 90 int rtprio_thread(int, lwpid_t, struct rtprio *);
|
H A D | cpuset.h | 168 int cpuset_setthread(lwpid_t id, cpuset_t *); 169 int cpuset_setithread(lwpid_t id, int cpu);
|
H A D | kdb.h | 89 struct thread *kdb_thr_lookup(lwpid_t);
|
H A D | user.h | 200 lwpid_t ki_tid; /* XXXKSE thread id */ 635 lwpid_t kkst_tid; /* ID of thread. */
|
H A D | types.h | 152 typedef __lwpid_t lwpid_t; /* Thread ID (a.k.a. LWP) */ typedef
|
/freebsd/usr.bin/truss/ |
H A D | setup.c | 71 static void new_proc(struct trussinfo *, pid_t, lwpid_t); 262 new_thread(struct procinfo *p, lwpid_t lwpid) in new_thread() 297 lwpid_t *lwps; in add_threads() 321 new_proc(struct trussinfo *info, pid_t pid, lwpid_t lwpid) in new_proc() 391 find_thread(struct trussinfo *info, pid_t pid, lwpid_t lwpid) in find_thread()
|
H A D | truss.h | 90 lwpid_t tid;
|
/freebsd/sys/dev/tpm/ |
H A D | tpm20.h | 128 lwpid_t owner_tid;
|
/freebsd/sys/compat/linux/ |
H A D | linux_misc.h | 169 struct thread *linux_tdfind(struct thread *, lwpid_t, pid_t);
|
H A D | linux_signal.c | 63 static int linux_tdksignal(struct thread *td, lwpid_t tid, 65 static int linux_tdsignal(struct thread *td, lwpid_t tid, 878 linux_tdksignal(struct thread *td, lwpid_t tid, int tgid, int sig, in linux_tdksignal() 906 linux_tdsignal(struct thread *td, lwpid_t tid, int tgid, int sig) in linux_tdsignal()
|
/freebsd/lib/libkvm/ |
H A D | kvm_vnet.c | 89 lwpid_t dumptid; in _kvm_vnet_selectpid()
|