17 lines
292 B
C
17 lines
292 B
C
|
/*
|
||
|
* ARM multiprocessor CPU helpers
|
||
|
*
|
||
|
* Copyright (c) 2003 Fabrice Bellard
|
||
|
*
|
||
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef TARGET_ARM_MULTIPROCESSING_H
|
||
|
#define TARGET_ARM_MULTIPROCESSING_H
|
||
|
|
||
|
#include "target/arm/cpu-qom.h"
|
||
|
|
||
|
uint64_t arm_cpu_mp_affinity(ARMCPU *cpu);
|
||
|
|
||
|
#endif
|