summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/thread.c b/kern/thread.c
index 27faf43..d279bc8 100644
--- a/kern/thread.c
+++ b/kern/thread.c
@@ -208,7 +208,7 @@ void stack_alloc(
* addresses of a stack given an address in the middle.
*/
- if (kmem_alloc_aligned(kernel_map, &stack, KERNEL_STACK_SIZE)
+ if (kmem_alloc_aligned(kmem_map, &stack, KERNEL_STACK_SIZE)
!= KERN_SUCCESS)
panic("stack_alloc");
@@ -268,7 +268,7 @@ void stack_collect(void)
#if MACH_DEBUG
stack_finalize(stack);
#endif /* MACH_DEBUG */
- kmem_free(kernel_map, stack, KERNEL_STACK_SIZE);
+ kmem_free(kmem_map, stack, KERNEL_STACK_SIZE);
s = splsched();
stack_lock();