コード例 #1
0
ファイル: main.c プロジェクト: JiakangJ/cs370
static void __init do_pre_smp_initcalls(void)
{
	extern int spawn_ksoftirqd(void);

	migration_init();
	spawn_ksoftirqd();
	if (!nosoftlockup)
		spawn_softlockup_task();
}
コード例 #2
0
ファイル: main.c プロジェクト: quentinzil/wl500g
static void __init do_pre_smp_initcalls(void)
{
	extern int spawn_ksoftirqd(void);
#ifdef CONFIG_SMP
	extern int migration_init(void);

	migration_init();
#endif
	spawn_ksoftirqd();
	spawn_softlockup_task();
}
コード例 #3
0
ファイル: main.c プロジェクト: mrtos/Logitech-Revue
static void do_pre_smp_initcalls(void)
{
    extern int spawn_ksoftirqd(void);
    extern int spawn_desched_task(void);
#ifdef CONFIG_SMP
    extern int migration_init(void);

    migration_init();
#endif
    posix_cpu_thread_init();
    spawn_ksoftirqd();
    spawn_softlockup_task();
    spawn_desched_task();
}