master
h 17 lines 386 Bytes
Raw
1 /*
2 * ARM AArch64 specific prototypes for bsd-user
3 *
4 * Copyright (c) 2015 Stacey D. Son
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8 #ifndef TARGET_ARCH_H
9 #define TARGET_ARCH_H
10
11 #include "qemu.h"
12 #include "target/arm/cpu-features.h"
13
14 void target_cpu_set_tls(CPUARMState *env, target_ulong newtls);
15 target_ulong target_cpu_get_tls(CPUARMState *env);
16
17 #endif /* TARGET_ARCH_H */