diff options
Diffstat (limited to 'kern/thread.c')
-rw-r--r-- | kern/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.c b/kern/thread.c index 4c48ef0d..ed5385dc 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -120,7 +120,7 @@ thread_setup(void) kmem_cache_init(&thread_cache, "thread", sizeof(struct thread), CPU_L1_SIZE, NULL, NULL, NULL, 0); kmem_cache_init(&thread_stack_cache, "thread_stack", STACK_SIZE, - CPU_L1_SIZE, NULL, NULL, NULL, 0); + DATA_ALIGN, NULL, NULL, NULL, 0); } static void |