target            240 kern/arch/sys161/dev/lamebus_machdep.c mainbus_send_ipi(struct cpu *target)
target            242 kern/arch/sys161/dev/lamebus_machdep.c 	lamebus_assert_ipi(lamebus, target);
target            886 kern/dev/lamebus/emu.c emufs_link(struct vnode *v, const char *name, struct vnode *target)
target            890 kern/dev/lamebus/emu.c 	(void)target;
target           1018 kern/dev/lamebus/emu.c emufs_link_notdir(struct vnode *v, const char *name, struct vnode *target)
target           1022 kern/dev/lamebus/emu.c 	(void)target;
target            589 kern/dev/lamebus/lamebus.c lamebus_assert_ipi(struct lamebus_softc *lamebus, struct cpu *target)
target            591 kern/dev/lamebus/lamebus.c 	write_ctlcpu_register(lamebus, target->c_hardware_number,
target            596 kern/dev/lamebus/lamebus.c lamebus_clear_ipi(struct lamebus_softc *lamebus, struct cpu *target)
target            598 kern/dev/lamebus/lamebus.c 	write_ctlcpu_register(lamebus, target->c_hardware_number,
target            166 kern/include/cpu.h void ipi_send(struct cpu *target, int code);
target            168 kern/include/cpu.h void ipi_tlbshootdown(struct cpu *target, const struct tlbshootdown *mapping);
target             56 kern/include/mainbus.h void mainbus_send_ipi(struct cpu *target);
target            436 kern/thread/thread.c thread_make_runnable(struct thread *target, bool already_have_lock)
target            442 kern/thread/thread.c 	targetcpu = target->t_cpu;
target            453 kern/thread/thread.c 	threadlist_addtail(&targetcpu->c_runqueue, target);
target           1037 kern/thread/thread.c 	struct thread *target;
target           1041 kern/thread/thread.c 	target = threadlist_remhead(&wc->wc_threads);
target           1048 kern/thread/thread.c 	if (target == NULL) {
target           1053 kern/thread/thread.c 	thread_make_runnable(target, false);
target           1062 kern/thread/thread.c 	struct thread *target;
target           1072 kern/thread/thread.c 	while ((target = threadlist_remhead(&wc->wc_threads)) != NULL) {
target           1073 kern/thread/thread.c 		threadlist_addtail(&list, target);
target           1086 kern/thread/thread.c 	while ((target = threadlist_remhead(&list)) != NULL) {
target           1087 kern/thread/thread.c 		thread_make_runnable(target, false);
target           1119 kern/thread/thread.c ipi_send(struct cpu *target, int code)
target           1123 kern/thread/thread.c 	spinlock_acquire(&target->c_ipi_lock);
target           1124 kern/thread/thread.c 	target->c_ipi_pending |= (uint32_t)1 << code;
target           1125 kern/thread/thread.c 	mainbus_send_ipi(target);
target           1126 kern/thread/thread.c 	spinlock_release(&target->c_ipi_lock);
target           1144 kern/thread/thread.c ipi_tlbshootdown(struct cpu *target, const struct tlbshootdown *mapping)
target           1148 kern/thread/thread.c 	spinlock_acquire(&target->c_ipi_lock);
target           1150 kern/thread/thread.c 	n = target->c_numshootdown;
target           1152 kern/thread/thread.c 		target->c_numshootdown = TLBSHOOTDOWN_ALL;
target           1155 kern/thread/thread.c 		target->c_shootdown[n] = *mapping;
target           1156 kern/thread/thread.c 		target->c_numshootdown = n+1;
target           1159 kern/thread/thread.c 	target->c_ipi_pending |= (uint32_t)1 << IPI_TLBSHOOTDOWN;
target           1160 kern/thread/thread.c 	mainbus_send_ipi(target);
target           1162 kern/thread/thread.c 	spinlock_release(&target->c_ipi_lock);
target            151 user/include/unistd.h int symlink(const char *target, const char *linkname);