mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-20 08:03:25 +00:00
11 lines
164 B
C
11 lines
164 B
C
![]() |
/*
|
||
|
* Generic entry point for the idle threads
|
||
|
*/
|
||
|
#include <linux/sched.h>
|
||
|
#include <linux/cpu.h>
|
||
|
|
||
|
void cpu_startup_entry(enum cpuhp_state state)
|
||
|
{
|
||
|
cpu_idle();
|
||
|
}
|