/* * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230) * Copyright 2015, 2016 Hesham Almatary * * SPDX-License-Identifier: GPL-2.0-only */ #include #include #include #include #include #include word_t CONST Arch_decodeTransfer(word_t flags) { return 0; } exception_t CONST Arch_performTransfer(word_t arch, tcb_t *tcb_src, tcb_t *tcb_dest) { return EXCEPTION_NONE; } #ifdef ENABLE_SMP_SUPPORT void Arch_migrateTCB(tcb_t *thread) { #ifdef CONFIG_HAVE_FPU if (nativeThreadUsingFPU(thread)) { switchFpuOwner(NULL, thread->tcbAffinity); } #endif } #endif