blob: 9a62ffdd296f0790974dcaf9a8c71ece11af6fbb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnaref8bd772017-02-08 18:51:36 +01002#ifndef _LINUX_SCHED_HOTPLUG_H
3#define _LINUX_SCHED_HOTPLUG_H
4
Ingo Molnar0ca01562017-02-03 14:52:01 +01005/*
6 * Scheduler interfaces for hotplug CPU support:
7 */
8
9extern int sched_cpu_starting(unsigned int cpu);
10extern int sched_cpu_activate(unsigned int cpu);
11extern int sched_cpu_deactivate(unsigned int cpu);
12
13#ifdef CONFIG_HOTPLUG_CPU
14extern int sched_cpu_dying(unsigned int cpu);
15#else
16# define sched_cpu_dying NULL
17#endif
18
19#ifdef CONFIG_HOTPLUG_CPU
20extern void idle_task_exit(void);
21#else
22static inline void idle_task_exit(void) {}
23#endif
24
Ingo Molnaref8bd772017-02-08 18:51:36 +010025#endif /* _LINUX_SCHED_HOTPLUG_H */