kstack             80 bsp/hal/ppc/arch/context.c 		k->kstack = (uint32_t)val;
kstack             64 bsp/hal/ppc/include/context.h 	uint32_t	kstack;		/* kernel stack */
kstack             74 bsp/hal/x86/arch/cpu.c tss_set(uint32_t kstack)
kstack             77 bsp/hal/x86/arch/cpu.c 	tss.esp0 = kstack;
kstack             73 sys/include/thread.h 	void		*kstack;	/* base address of kernel stack */
kstack            104 sys/kern/thread.c 	memcpy(t->kstack, curthread->kstack, KSTACKSZ);
kstack            105 sys/kern/thread.c 	sp = (vaddr_t)t->kstack + KSTACKSZ;
kstack            425 sys/kern/thread.c 	t->kstack = stack;
kstack            458 sys/kern/thread.c 		kmem_free(zombie->kstack);
kstack            459 sys/kern/thread.c 		zombie->kstack = NULL;
kstack            472 sys/kern/thread.c 	kmem_free(t->kstack);
kstack            473 sys/kern/thread.c 	t->kstack = NULL;
kstack            539 sys/kern/thread.c 	memset(t->kstack, 0, KSTACKSZ);
kstack            540 sys/kern/thread.c 	sp = (vaddr_t)t->kstack + KSTACKSZ;
kstack            590 sys/kern/thread.c 	idle_thread.kstack = stack;