15 lines
221 B
C
15 lines
221 B
C
|
/*
|
||
|
* Copyright (c) 2021 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <ipi.h>
|
||
|
|
||
|
#include <zephyr/kernel.h>
|
||
|
|
||
|
void arch_sched_broadcast_ipi(void)
|
||
|
{
|
||
|
arch_sched_directed_ipi(IPI_ALL_CPUS_MASK);
|
||
|
}
|