diff options
author | Richard Braun <rbraun@sceen.net> | 2014-12-10 23:00:29 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-12-10 23:16:47 +0100 |
commit | 107cbf4cf79674167ba36941a2f98d265e67568c (patch) | |
tree | 2a2b17f0bea597d18cc435348cc257bb76d5db09 /kern/thread.c | |
parent | fbf48c1c028b9a7ba81ceb2bb86941752539ed20 (diff) |
kern/thread: update call to kmem_cache_init
Diffstat (limited to 'kern/thread.c')
-rw-r--r-- | kern/thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/thread.c b/kern/thread.c index 9c794189..9efcd11a 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -1812,9 +1812,9 @@ thread_setup(void) thread_bootstrap_common(cpu); kmem_cache_init(&thread_cache, "thread", sizeof(struct thread), - CPU_L1_SIZE, NULL, NULL, NULL, 0); + CPU_L1_SIZE, NULL, 0); kmem_cache_init(&thread_stack_cache, "thread_stack", STACK_SIZE, - DATA_ALIGN, NULL, NULL, NULL, 0); + DATA_ALIGN, NULL, 0); thread_setup_reaper(); |