2021-04-15 16:27:45 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) BayLibre SAS
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZEPHYR_INCLUDE_ARM64_STRUCTS_H_
|
|
|
|
#define ZEPHYR_INCLUDE_ARM64_STRUCTS_H_
|
|
|
|
|
|
|
|
/* Per CPU architecture specifics */
|
|
|
|
struct _cpu_arch {
|
2021-04-07 23:31:44 -04:00
|
|
|
#ifdef CONFIG_FPU_SHARING
|
|
|
|
struct k_thread *fpu_owner;
|
|
|
|
#endif
|
2021-04-15 16:27:45 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* ZEPHYR_INCLUDE_ARM64_STRUCTS_H_ */
|