Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    r19f857a r9dae191e  
    6767#include <debug.h>
    6868#include <str.h>
     69#include <sysinfo/stats.h>
    6970
    7071#ifdef CONFIG_SMP
     
    122123                } else
    123124                        panic("Unable to create kmp thread.");
     125               
    124126                thread_join(thread);
    125127                thread_detach(thread);
     
    149151         */
    150152        arch_post_smp_init();
     153       
     154        /* Start thread computing system load */
     155        thread = thread_create(kload, NULL, TASK, 0, "kload", false);
     156        if (thread != NULL)
     157                thread_ready(thread);
     158        else
     159                printf("Unable to create kload thread\n");
    151160       
    152161#ifdef CONFIG_KCONSOLE
Note: See TracChangeset for help on using the changeset viewer.