Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
18 lines
385 B
C
18 lines
385 B
C
/*
|
|
* ARM 32-bit specific prototypes for bsd-user
|
|
*
|
|
* Copyright (c) 2013 Stacey D. Son
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef TARGET_ARCH_H
|
|
#define TARGET_ARCH_H
|
|
|
|
#include "qemu.h"
|
|
#include "target/arm/cpu-features.h"
|
|
|
|
void target_cpu_set_tls(CPUARMState *env, target_ulong newtls);
|
|
target_ulong target_cpu_get_tls(CPUARMState *env);
|
|
|
|
#endif /* TARGET_ARCH_H */
|