linux-zen-desktop/kernel/sched/smp.h

16 lines
406 B
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Scheduler internal SMP callback types and methods between the scheduler
* and other internal parts of the core kernel:
*/
extern void sched_ttwu_pending(void *arg);
2023-10-24 12:59:35 +02:00
extern bool call_function_single_prep_ipi(int cpu);
2023-08-30 17:31:07 +02:00
#ifdef CONFIG_SMP
extern void flush_smp_call_function_queue(void);
#else
static inline void flush_smp_call_function_queue(void) { }
#endif